代码搜索:methods

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

代码结果 10,000
www.eeworm.com/read/151556/12201434

m simprl.m

function s=simprl(f,a,b,M) %Input - f is the integrand input as a string 'f' % - a and b are upper and lower limits of integration % - M is the number of subintervals %Output - s
www.eeworm.com/read/151556/12201437

m backsub.m

function X=backsub(A,B) %Input - A is an n x n upper-triangular nonsingular matrix % - B is an n x 1 matrix %Output - X is the solution to the linear system AX = B %Find the dimension of B and
www.eeworm.com/read/151556/12201439

m rk4.m

function R=rk4(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
www.eeworm.com/read/151556/12201462

m traprl.m

function s=traprl(f,a,b,M) %Input - f is the integrand input as a string 'f' % - a and b are upper and lower limits of integration % - M is the number of subintervals %Output - s
www.eeworm.com/read/253699/12204939

h serialport.h

/* Module : SERIALPORT.H Purpose: Declaration for an MFC wrapper class for serial ports Created: PJN / 31-05-1999 Copyright (c) 1999 - 2002 by PJ Naughter. All rights reserved. */ /
www.eeworm.com/read/253533/12216532

txt 23.2.txt

Listing 23.2 Enumerating Methods and Their Parameters // get methods curType = new TreeNode( “Methods” ); foreach( MethodInfo method in t.GetMethods() ) { string methodString = method.Name + “( “
www.eeworm.com/read/253260/12234726

cpp workermi.cpp

// workermi.cpp -- working class methods with MI #include "workermi.h" #include using std::cout; using std::cin; using std::endl; // Worker methods Worker::~Worker() { } // protec
www.eeworm.com/read/253260/12234741

cpp worker0.cpp

// worker0.cpp -- working class methods #include "worker0.h" #include using std::cout; using std::cin; using std::endl; // Worker methods // must implement virtual destructor, even
www.eeworm.com/read/253260/12234993

cpp tv.cpp

// tv.cpp -- methods for the Tv class (Remote methods are inline) #include #include "tv.h" bool Tv::volup() { if (volume < MaxVal) { volume++; return true;
www.eeworm.com/read/253260/12235092

cpp tabtenn1.cpp

// tabtenn1.cpp -- base-class methods and derived-class methods #include "tabtenn1.h" #include #include // TableTennisPlayer methods TableTennisPlayer::TableTennisPlayer (c