代码搜索:matlab

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

代码结果 10,000
www.eeworm.com/read/151556/12201400

m rctrap.m

function T=rctrap(f,a,b,n) %Input - f is the integrand input as a string 'f' % - a and b are upper and lower limits of integration % - n is the number of times for recursion %Output - T
www.eeworm.com/read/151556/12201434

m simprl.m

function s=simprl(f,a,b,M) %Input - f is the integrand input as a string 'f' % - a and b are upper and lower limits of integration % - M is the number of subintervals %Output - s
www.eeworm.com/read/151556/12201437

m backsub.m

function X=backsub(A,B) %Input - A is an n x n upper-triangular nonsingular matrix % - B is an n x 1 matrix %Output - X is the solution to the linear system AX = B %Find the dimension of B and
www.eeworm.com/read/151556/12201439

m rk4.m

function R=rk4(f,a,b,ya,M) %Input - f is the function entered as a string 'f' % - a and b are the left and right endpoints % - ya is the initial condition y(a) % - M is the
www.eeworm.com/read/151556/12201462

m traprl.m

function s=traprl(f,a,b,M) %Input - f is the integrand input as a string 'f' % - a and b are upper and lower limits of integration % - M is the number of subintervals %Output - s
www.eeworm.com/read/253623/12209069

txt readme.txt

Updated: January 11, 2002 To execute the Matlab version simply execute gui.m Enjoy. Greg Welch
www.eeworm.com/read/339711/12209460

txt readme.txt

免费天地的计算机书籍配套磁盘服务 ================================ 本文件是从“免费天地”站点下载的。 (http://www.nease.net/~free) --------------------------------------------------- 与本磁盘配套的书籍的所有权益归原书作者和出版商所有。 我们提供配套磁盘只是为了
www.eeworm.com/read/339711/12209671

txt readme.txt

免费天地的计算机书籍配套磁盘服务 ================================ 本文件是从“免费天地”站点下载的。 (http://www.nease.net/~free) --------------------------------------------------- 与本磁盘配套的书籍的所有权益归原书作者和出版商所有。 我们提供配套磁盘只是为了
www.eeworm.com/read/253525/12217048

dat bookinfo.dat

[General Information] 书名=应用MATLAB建模与仿真 作者=陈桂明等编著 页数=398 SS号=10331931 出版日期=2001年3月第1版
www.eeworm.com/read/253521/12217630

m ex3_23.m

X=input('Enter X:'); E=zeros(size(X)); F=eye(size(X)); n=1; while norm(F,1)>0 E=E+F; F=F*X/n; n=n+1; end E xpm(X) %调用MATLAB矩阵指数函数求矩阵指数