代码搜索:MATLAB
找到约 10,000 项符合「MATLAB」的源代码
代码结果 10,000
www.eeworm.com/read/261324/11654894
m aaexponentialpdf.m
function[x,m,sd]=aaexponentialpdf(b,N)
%function[x,m,sd]=aaexponentialpdf(b,N)
for i=1:N
x(i)=-b*log(rand);%log is MATLAB function that gives
end; %the natural algorithm;
m
www.eeworm.com/read/261198/11659594
m~ zipsave.m~
%ZIPSAVE Save data in compressed format
%
% zipsave( filename, data )
% filename: string variable that contains the name of the resulting
% compressed file (do not include '.zip' extension)
% pkzip
www.eeworm.com/read/347363/11670927
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/347363/11670957
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/157356/11717659
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/157044/11743409
m metismex.m
% METISMEX : Mex-file interface to METIS
%
% /****************************************************************************
% * metismex.c
% * Public domain MATLAB CMEX-file to let you use METIS-4
www.eeworm.com/read/156874/11757652
txt 08-06.txt
%例8-6 给MATLAB 7的图形添加标题。
>> x = 0:.1:2;
>>y1=sin(x);
>>y2 = sin(x-0.25);
>>y3 = sin(x-0.5);
>> plot(x,y1,'-.b', x,y2,'--r*', x,y3,'-.gh')
>> title('There three lines')
>>
www.eeworm.com/read/156874/11758055
txt 10-41.txt
%例10-41 运行错误的处理。
%编制M文件如下。
function d=yunxingcuowu(a,b,c)
d=a/b;
if isinf(d) %对可能产生的inf值做出判断
sprintf('b should not be 0')
return
else
d=d*c;
end
%为了检验该程序,
www.eeworm.com/read/156868/11759584
m screensizecheck.m
function screensizecheck(SZ)
%SCREENSIZECHECK Check the current screen resolution.
% SCREENSIZECHECK([width height]) compares the current screen
% resolution to the width and height given (in
www.eeworm.com/read/156868/11759602
m versioncheck.m
function MATLABVERSION = versioncheck(x)
%VERSIONCHECK Check the Matlab Version
% MATLABVERSION = VERSIONCHECK(x) compares the number x to the
% version of Matlab on which the function is runn