代码搜索:Numerical
找到约 2,441 项符合「Numerical」的源代码
代码结果 2,441
www.eeworm.com/read/305390/13772323
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/132652/5910832
cpp numericalrecipes_dist.cpp
//---------------------------------------------------------------------------
#include
#include
#pragma hdrstop
#include "NumericalRecipes.h"
/* Many parts of this progr
www.eeworm.com/read/152112/12138998
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/152112/12139037
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/152112/12139046
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/152112/12139088
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/152112/12139110
m secant.m
function [p1,err,k,y]=secant(f,p0,p1,delta,epsilon,max1)
%Input - f is the object function input as a string 'f'
% - p0 and p1 are the initial approximations to a zero of f
% - delta
www.eeworm.com/read/152112/12139133
m romber.m
function [R,quad,err,h]=romber(f,a,b,n,tol)
%Input - f is the integrand input as a string 'f'
% - a and b are upper and lower limits of integration
% - n is the maximum number of rows in
www.eeworm.com/read/152112/12139146
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 tolerance
% - max1
www.eeworm.com/read/152112/12139156
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 Program