代码搜索:Numerical

找到约 2,441 项符合「Numerical」的源代码

代码结果 2,441
www.eeworm.com/read/222288/14698013

m abm.m

function A=abm(f,T,Y) %Input - f is the function % - T is the vector of abscissas % - Y is the vector of ordinates %Remark. The first four coordinates of T and Y must %
www.eeworm.com/read/222288/14698024

m invpow.m

function [lambda,V]=invpow(A,X,alpha,epsilon,max1) %Input - A is an nxn matrix % - X is the nx1 starting vector % - alpha is the given shift % - epsilon is the tol
www.eeworm.com/read/222288/14698032

m uptrbk.m

function X = uptrbk(A,B) %Input - A is an N x N nonsingular matrix % - B is an N x 1 matrix %Output - X is an N x 1 matrix containing the solution to AX=B. % NUMERICAL METHODS: Matlab P
www.eeworm.com/read/222288/14698039

m rk4.m

function R=rk4(f,a,b,ya,M) %Input - f is the function % - a and b are the left and right endpoints % - ya is the initial condition y(a) % - M is the number of ste
www.eeworm.com/read/222288/14698040

m lufact.m

function X = lufact(A,B) %Input - A is an N x N matrix % - B is an N x 1 matrix %Output - X is an N x 1 matrix containing the solution to AX = B. % NUMERICAL METHODS: Matlab Programs % (
www.eeworm.com/read/222288/14698046

m newdim.m

function [P,iter,err]=newdim(F,JF,P,delta,epsilon,max1) %Input -F is the system saved as the M-file F.m % -JF is the Jacobian of F saved as the M-file JF.M % -P is the inital
www.eeworm.com/read/217040/14982106

me 1st_read.me

This 1st_read.me file is included with the author's kind permission. > From: wpress%cfata4@harvard.harvard.edu (Bill Press) > Subject: Numerical Recipes Pascal code > To: ts@uwasa.fi > Date: Wed
www.eeworm.com/read/172473/9706161

m rkf45.m

function R=rkf45(f,a,b,ya,M,tol) %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
www.eeworm.com/read/172473/9706195

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/172473/9706207

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