代码搜索:Prentice

找到约 973 项符合「Prentice」的源代码

代码结果 973
www.eeworm.com/read/434325/7874349

m romber.m

function [R,quad,err,h] = romber(f,a,b,n,toler) %--------------------------------------------------------------------------- %ROMBER Quadrature using the Romberg integration. % Sample call % [
www.eeworm.com/read/434325/7874372

m cs.m

function Z = cs(S,X,T) %--------------------------------------------------------------------------- %CS Evaluates the cubic spline created with csfit. % Sample call % Z = cs(S,X,T) % Inputs
www.eeworm.com/read/434325/7874427

m diffnew.m

function [A,df] = diffnew(X,Y) %--------------------------------------------------------------------------- %DIFFNEW Numerical approximation for f'(x), % via differentiation of the Newto
www.eeworm.com/read/434325/7874465

m trisys.m

function X = trisys(A,D,C,B) %--------------------------------------------------------------------------- %TRISYS Solution of a triangular linear system. % It is assumed that D and B have
www.eeworm.com/read/434325/7874481

m jacobi.m

function [P,dP,Z] = jacobi(A,B,P,delta,max1) %--------------------------------------------------------------------------- %JACOBI Jacobi iteration for solving a linear system. % Sample call %
www.eeworm.com/read/434325/7874507

m lusolv.m

function [X,Y] = lusolv(A,B,row) %--------------------------------------------------------------------------- %LUSOLV Forward substitution followed by back substitution is used. % Sample call %
www.eeworm.com/read/434325/7874669

m rkf45.m

function [T,Y] = rkf45(f,a,b,ya,m,tol) %--------------------------------------------------------------------------- %RKF45 % Runge-Kutta-Fehlberg solution for y' = f(t,y) with y(a) = ya. % Sample
www.eeworm.com/read/434325/7874707

m crnich.m

function U = crnich(f,g1,g2,a,b,c,n,m) %--------------------------------------------------------------------------- %CRNICH Crank-Nicholson solution to the heat equation. % This function
www.eeworm.com/read/434325/7874848

m fixpt.m

function [p0,err,P] = fixpt(g,p0,tol,max1) %--------------------------------------------------------------------------- %FIXPT Fixed point iteration. % Sample calls % [p0,err] = fixpt('g',p0,t
www.eeworm.com/read/434325/7874862

m regula.m

function [c,yc,err,P] = regula(f,a,b,delta,epsilon,max1) %--------------------------------------------------------------------------- %REGULA The Regula-Falsi method is used to locate a root. % S