代码搜索:methods

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

代码结果 10,000
www.eeworm.com/read/152112/12139008

m qr1.m

function D=qr1(A,epsilon) %Input - A is a symmetric tridiagona nxn matrix % - epsilon is the tolerance %Output - D is the vector of eigenvalues % NUMERICAL METHODS: Matlab Programs % (c) 2004
www.eeworm.com/read/152112/12139059

m approot.m

function R = approot (X,epsilon) % Input - f is object function saved as an M-file named f.m % - X is the vector of abscissas % - epsilon is the tolerance % Output - R is the vector of a
www.eeworm.com/read/152112/12139073

m srule.m

function Z=srule(f,a0,b0,tol0) %Input - f is the integrand input as a string 'f' % - a0 and b0 are upper and lower limits of integration % - tol0 is the tolerance % Output - Z is a 1
www.eeworm.com/read/152112/12139100

m qr2.m

function D=qr2(A,epsilon) %Input - A is a symmetric tridiagonal nxn matrix % - epsilon is the tolerance %Output - D is the nx1 vector of eigenvalues % NUMERICAL METHODS: Matlab Programs % (c)
www.eeworm.com/read/152112/12139115

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

m trisys.m

function X=trisys (A,D,C,B) %Input - A is the sub diagonal of the coefficient matrix % - D is the main diagonal of the coefficient matrix % - C is the super diagonal of the coefficient matr
www.eeworm.com/read/151556/12201355

m tpcoeff.m

function [A,B]=tpcoeff(X,Y,M) %Input - X is a vector of equally spaced abscisssas in [-pi, pi] % - Y is a vector of ordinates % - M is the degree of the trigomometric polynomial %O
www.eeworm.com/read/151556/12201366

m srule.m

function Z=srule(f,a0,b0,tol0) %Input - f is the integrand input as a string 'f' % - a0 and b0 are upper and lower limits of integration % - tol0 is the tolerance % Output - Z is a 1
www.eeworm.com/read/151556/12201381

m lspoly.m

function C = lspoly(X,Y,M) %Input - X is the 1xn abscissa vector % - Y is the 1xn ordinate vector % - M is the degree of the least-squares polynomial % Output - C is the coefficient l
www.eeworm.com/read/151556/12201387

m qr2.m

function D=qr2(A,epsilon) %Input - A is a symmetric tridiagonal nxn matrix % - epsilon is the tolerance %Output - D is the nx1 vector of eigenvalues % NUMERICAL METHODS: MATLAB Programs %(c) 19