代码搜索:MATLAB LMD

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

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

m linsht.m

function L=linsht(F1,F2,a,b,alpha,beta,M) %Input - F1 and F2 are the systems of first-order equations % representing the I.V.P.'s (9) and (10), respectively; % input as strings '
www.eeworm.com/read/151556/12201361

m crnich.m

function U=crnich(f,c1,c2,a,b,c,n,m) %Input - f=u(x,0) as a string 'f' % - c1=u(0,t) and c2=u(a,t) % - a and b right endpoints of [0,a] and [0,b] % - c the constant in the heat equatio
www.eeworm.com/read/151556/12201369

asv rk4.asv

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/12201378

asv euler.asv

function E=euler(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 n
www.eeworm.com/read/151556/12201380

m heun.m

function H=heun(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 nu
www.eeworm.com/read/151556/12201384

m forwdif.m

function U=forwdif(f,c1,c2,a,b,c,n,m) %Input - f=u(x,0) as a string 'f' % - c1=u(0,t) and c2=u(a,t) % - a and b right endpoints of [0,a] and [0,b] % - c the constant in the heat equati
www.eeworm.com/read/151556/12201397

m rks4.m

function [T,Z]=rks4(F,a,b,Za, M) %Input - F is the system input as a string 'F' % - a and b are the endpoints of the interval % - Za=[x(a) y(a)] the initial conditions % -
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