代码搜索:MatLAB
找到约 10,000 项符合「MatLAB」的源代码
代码结果 10,000
www.eeworm.com/read/429621/8798205
m m4ustp.m
% M-file for the second part of Project 4 on linearized analysis
% in Chapter 6 to obtain the unit step response of the motor
% transfer function, numG/denG.
% It can only be used after the tra
www.eeworm.com/read/429558/8803028
txt readme_ncutimage.txt
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Normalized Cut Image Segmentation Code %
% %
% Timothee Cour (UPENN), Stella Yu
www.eeworm.com/read/285038/8874592
txt~ readme.txt~
Kalman filter toolbox written by Kevin Murphy, 1998.
See http://www.ai.mit.edu/~murphyk/Software/kalman.html for details.
This version was last updated on 18 January 2003.
Installation
------------
www.eeworm.com/read/285038/8874645
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/427909/8913742
txt~ readme.txt~
Kalman filter toolbox written by Kevin Murphy, 1998.
See http://www.ai.mit.edu/~murphyk/Software/kalman.html for details.
This version was last updated on 18 January 2003.
Installation
------------
www.eeworm.com/read/427909/8913776
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/383744/8921898
m tt10.m
% for循环举例
k=0;
for i=1:10,
k=i+k;
end;
disp(k)
pause;
%1. for循环不能使用内部重新赋值循环变量而终止;
k=0;
for i=1:10,
k=i+k;
i=10,
end;
disp(k);
pause;
%2. for循环内部接受任何有效的MATLAB数组;
% 循环次数的控
www.eeworm.com/read/383744/8922207
m zy16.m
% for循环举例
k=0;
for i=1:10,
k=i+k;
end;
disp(k)
pause;
%1. for循环不能使用内部重新赋值循环变量而终止;
k=0;
for i=1:10,
k=i+k;
i=10;
end;
disp(k);
pause;
%2. for循环内部接受任
www.eeworm.com/read/427336/8950921
m 一般查找纯cos.m
p=8;%条纹周期
q=8;%等效周期
i1=imread('D:\matlab\work\cy3\4-0.bmp');
i1=double(i1);
i2=imread('D:\matlab\work\cy3\4-1.bmp');
i2=double(i2);
i3=imread('D:\matlab\work\cy3\4-2.bmp');
i3=double(i3);
i4=i
www.eeworm.com/read/427336/8950928
m xy分别近似比较.m
%投影垂直和水平正弦条纹,分别沿每列每行查找最紧邻点,没解决对准问题
%用解线性方程的方法求条纹的背景和调治度
p=24;%条纹周期
q=24;%等效周期
i1=imread('D:\matlab\work\cy2\4-0.bmp');
i1=double(i1);
i2=imread('D:\matlab\work\cy2\4-1.bmp');
i2=double(i2);
i3