代码搜索:methods

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

代码结果 10,000
www.eeworm.com/read/342759/12000336

html slide094.html

www.eeworm.com/read/153637/12017096

h newmenux.h

//====================================================================== // Header file // // Written for the book Programming Windows CE // Copyright (C) 2003 Douglas Boling //==================
www.eeworm.com/read/255160/12098702

html book-index.html

www.eeworm.com/read/341144/12105112

h geometry.h

// Geometry.h: interface for the Geometry class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_GEOMETRY_H__D6CBA539_D626_4363_B6ED_837FC5B87A31__INCLU
www.eeworm.com/read/152112/12138982

m hamming.m

function H=hamming(f,T,Y) %Input - f is the function entered as a string 'f' % - T is the vector of abscissas % - Y is the vector of ordinates %Remark. The first four coordinates of
www.eeworm.com/read/152112/12139019

m milne.m

function M=milne(f,T,Y) %Input - f is the function entered as a string 'f' % - T is the vector of abscissas % - Y is the vector of ordinates %Remark. The first four coordinates of T
www.eeworm.com/read/152112/12139029

m ls.m

function L=ls(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 % - a and b are the endpoin
www.eeworm.com/read/152112/12139048

m readme.m

NUMERICAL METHODS: Matlab Programs (c) 2004 by John H. Mathews and Kurtis D. Fink Complementary Software to accompany the textbook NUMERICAL METHODS: Using Matlab, Fourth Edition ISBN: 0-13-06
www.eeworm.com/read/152112/12139051

m dirich.m

function U=dirich(f1,f2,f3,f4,a,b,h,tol,max1) %Input - f1,f2,f3,f4 are boundary functions input as strings % - a and b right endpoints of [0,a] and [0,b] % - h step size % - tol is the
www.eeworm.com/read/152112/12139080

m bisect.m

function [c,err,yc]=bisect(f,a,b,delta) %Input - f is the function input as a string 'f' % - a and b are the left and right endpoints % - delta is the tolerance %Output - c is the zero %