代码搜索:MATLAB

找到约 10,000 项符合「MATLAB」的源代码

代码结果 10,000
www.eeworm.com/read/286440/8763861

m dijkstra.m

function D = dijkstra( G , S ) % -------------------------------------------------------------------- % Mark Steyvers, Stanford University, 12/19/00 % -----------------------------------------
www.eeworm.com/read/430093/8767405

m contents.m

% FastICA for Matlab 7.x and 6.x % Version 2.5, October 19 2005 % Copyright (c) Hugo G鋠ert, Jarmo Hurri, Jaakko S鋜el
www.eeworm.com/read/430091/8767552

m ex203.m

%******************************************************** %程序:EX203.M %功能:MATLAB中曲线线型、颜色和标记点类型使用实例 %******************************************************** x=0:pi/20:2*pi; %定义x坐标轴范
www.eeworm.com/read/429877/8784533

m fig2_2.m

% This program can be used tore-produce Figure 2.2 of text clear all close all xg = linspace(-6,6,1500); % randowm variable between -4 and 4 xr = linspace(0,6,1500); % randowm variable between 0 a
www.eeworm.com/read/429840/8786016

m examp3_21.m

syms x; f=abs(x)/x; % 定义方波信号 xx=[-pi:pi/200:pi]; xx=xx(xx~=0); xx=sort([xx,-eps,eps]); % 剔除零点 yy=subs(f,x,xx); plot(xx,yy), hold on % 绘制出理论值并保持坐标系 for n=2:20 [a,b,f1]=fseries(f,x,n), y1=subs
www.eeworm.com/read/285876/8803483

xml info.xml

12 Higher-Order Spectral Analysis Toolbox matlab $toolbox/matlab/general/matlabicon.gif
www.eeworm.com/read/429479/8806422

m glcm_features2.m

function [out] = GLCM_Features1(glcmin,pairs) % % GLCM_Features2 helps to calculate the features from the different GLCMs % that are input to the function. The GLCMs are stored in a i x j x n % m
www.eeworm.com/read/285822/8809338

m exa110701_pwelch.m

%------------------------------------------------------------------------- % exa1100701_pwelch.m, for example 11.7.1 and fig. 11.5.1(d) % to estimate the PSD of x(n) by Welch average; %------------
www.eeworm.com/read/285822/8809403

m exa090804_svd.m

%----------------------------------------------------------------------- % exa090804_svd.m, for example 9.8.4 % to test svd.m; % 在MATLAB6.1 和 MATLAB5.3下运行该程序,所得到的 U,V矩阵稍有不同, % 但奇异值是一样的 %---------
www.eeworm.com/read/385103/8819517

m ex3_23.m

X=input('Enter X:'); E=zeros(size(X)); F=eye(size(X)); n=1; while norm(F,1)>0 E=E+F; F=F*X/n; n=n+1; end E xpm(X) %调用MATLAB矩阵指数函数求矩阵指数