代码搜索:MATLAB

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

代码结果 10,000
www.eeworm.com/read/150133/12309987

txt~ readme.txt~

Hidden Markov Model (HMM) Toolbox written by Kevin Murphy (1998). See http://www.ai.mit.edu/~murphyk/Software/hmm.html for details. This version was last updated on 5 May 2004. Installation ---------
www.eeworm.com/read/150133/12310096

txt readme.txt

Hidden Markov Model (HMM) Toolbox written by Kevin Murphy (1998). See http://www.ai.mit.edu/~murphyk/Software/hmm.html for details. Installation ------------ 1. Install netlab from http://www.ncrg.a
www.eeworm.com/read/251837/12316701

readme

The file b4m.ps in this directory contains the b4m documentation. For a short installation reference and for some major details see http://www.ti3.tu-harburg.de/~zemke/b4m/index.html b4m V
www.eeworm.com/read/150069/12318594

m exa090702.m

% ------------------------------------------------------------------- % exa090702.m, for example 9.7.2 and fig 9.7.2 % 连续小波变换。noissin 是MATLAB中带噪声的正弦信号。 % 本程序给出的是连续小波变换的灰度图表示。 %--------------------
www.eeworm.com/read/338068/12326149

m exa090702.m

% ------------------------------------------------------------------- % exa090702.m, for example 9.7.2 and fig 9.7.2 % 连续小波变换。noissin 是MATLAB中带噪声的正弦信号。 % 本程序给出的是连续小波变换的灰度图表示。 %--------------------
www.eeworm.com/read/149609/12362786

c mexevalstring.c

/*================================================================= * mexevalstring.c * * mexevalstring takes no input arguments. It uses mexEvalString to * turn warnings off in MATLAB. It the
www.eeworm.com/read/337307/12377617

m rand.m

%R=rand(m,n) 生成(0,1)上均匀分布的m行n列随机矩阵 %RAND Uniformly distributed random numbers. % RAND(N) is an N-by-N matrix with random entries, chosen from % a uniform distribution on the interval (0.0,1.0
www.eeworm.com/read/337107/12390774

m myfft.m

% 用matlab编的fft变换程序 % % % 用蝶形算法和码位倒置法编写的fft变换程序,并验证之,有兴趣的可以看看。 function data=myfft(datat,nn,isign) datat=mybitrevorder(datat,nn); %这个地方也可以用matlab自带的bitrevorder,有兴趣的还是自己编一下 for i=
www.eeworm.com/read/250225/12422927

m cfigure.m

% create a figure, with fixed size % use it similar as figure function function h=cfigure(k,width,height) if nargin ==0, k = 1; end if nargin
www.eeworm.com/read/250225/12423108

m factorial.m

function p = factorial(n) %FACTORIAL Factorial function. % Does the same as the matlab factorial function. This one is added for those % who do not have it in their matlab installation. if (le