代码搜索:MATLAB

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

代码结果 10,000
www.eeworm.com/read/136408/5872302

bat example5_sfun.bat

"d:\matlab6p1\sys\lcc\bin\lccmake" -f example5_sfun.lmk
www.eeworm.com/read/456224/6278882

m example9_2.m

function retval = Example9_2(x) % This is the peaks function % copyright MATLAB retval= 3*(1-x(1))^2*exp(-(x(1)^2) - (x(2)+1)^2) ... - 10*(x(1)/5 - x(1)^3 - x(2)^5).*exp(-x(1)^2-x(2)^2) ...
www.eeworm.com/read/456224/6278897

m example9_2plot.m

function retval = Example9_2plot(X,Y) % This is the peaks function % copyright MATLAB retval= 3*(1-X).^2.*exp(-(X.^2) - (Y+1).^2) ... - 10*(X/5 - X.^3 - Y.^5).*exp(-X.^2-Y.^2) ... - 1/3*e
www.eeworm.com/read/441153/6279625

html multicore.html

Multicore
www.eeworm.com/read/291067/6302905

m multimat.m

% ***************************************************************************** % RECVAR, A package for new data types in Matlab. % (c) FOA 1998. See the file rvright.m for copyright notice. % % Mul
www.eeworm.com/read/291067/6302918

m showr.m

function showr(recvar) % RECVAR, A package for new data types in Matlab 4. % (c) FOA 1997. See the file rvright.m for copyright notice. % % function showr(recvar) % % Shows the contents av all field
www.eeworm.com/read/291067/6303024

m setr.m

function M = setr(recordvar, fieldname, fieldvar) % RECVAR, A package for new data types in Matlab 4. % (c) FOA 1997. See the file rvright.m for copyright notice. % % function M = setr(recordvar, fi
www.eeworm.com/read/291067/6303075

m reshapem.m

function MMOut = reshapem(MMIn, newSize) % RECVAR, A package for new data types in Matlab 4. % (c) FOA 1997. See the file rvright.m for copyright notice. % % function MMOut = reshapem(MMIn, newSize)
www.eeworm.com/read/182227/6337086

dat bookinfo.dat

[General Information] 书名=C语言与MATLAB接口:编程与实例 作者= 页数=288 SS号=0 出版日期=
www.eeworm.com/read/257423/6356453

m c5ex4.m

% MATLAB solution of the inverse Laplace transform % for Example 5-4 % X = sym('(s+8)/(s^2+6*s+13)'); x = ilaplace(X); pretty(X) pretty(x)