代码搜索:MATLAB

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

代码结果 10,000
www.eeworm.com/read/467806/7001682

txt 例1.14.txt

例1.14 help命令。 >> help % 在命令窗口直接输入help命令,显示在线帮助纵览。 HELP topics: matlab\general - General purpose commands. matlab\ops - Operators and special characters. matlab\lang - Pr
www.eeworm.com/read/467324/7009784

m ip_04_04.m

% MATLAB script for Illustrative Problem 4, Chapter 4. a=[-10,-5,-4,-2,0,1,3,5,10]; for i=1:length(a)-1 y(i)=centroid('normal',a(i),a(i+1),0.001,0,1); end
www.eeworm.com/read/467324/7009806

m ip_01_01.m

% MATLAB script for Illustrative Problem 1, Chapter 1. n=[-20:1:20]; x=abs(sinc(n/2)); stem(n,x);
www.eeworm.com/read/466855/7022121

m exa090702.m

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

m ip_01_01.m

% MATLAB script for Illustrative Problem 1, Chapter 1. n=[-20:1:20]; x=abs(sinc(n/2)); stem(n,x);
www.eeworm.com/read/465793/7046128

txt readme.txt

Kalman filter toolbox written by Kevin Murphy, 1998. See http://www.ai.mit.edu/~murphyk/Software/kalman.html for details. Installation ------------ 1. Install KPMtools from http://www.ai.mit.edu/~mu
www.eeworm.com/read/172061/7074842

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/247232/7075012

dat bookinfo.dat

[General Information] 书名=MATLAB通信仿真及应用实例详解 作者= 页数=415 SS号=0 出版日期=
www.eeworm.com/read/152244/7139433

txt readme.txt

Notes on using MATLAB .M files accompanying the text Discrete-Time Control Problems using MATLAB and the Control Systems Toolbox by J. H. Chow, D. K. Fre
www.eeworm.com/read/299984/7139948

m reorderdset.m

function a = reorderdset(a,L) % This is just needed to execute the below command outside the @dataset % directory, as it fails there in some Matlab versions a(L,:) = a; return