代码搜索:methods

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

代码结果 10,000
www.eeworm.com/read/434781/7801883

java showmethods17.java

// typeinfo/ShowMethods17.java // TIJ4 Chapter Typeinfo, Exercise 17, page 593 // Modify the regular expression in ShowMethods.java to additionally // strip off the keywords native and final (hint:
www.eeworm.com/read/434781/7801973

java frog.java

// reusing/Frog.java // TIJ4, Chapter Reusing, Exercise 16, page 262 /* Create a class called Amphibian. From this, inherit a class called Frog. * Put appropriate methods in the base class. In mai
www.eeworm.com/read/434781/7802085

java ex14.java

// interfaces/Ex14.java // TIJ4 Chapter Interfaces, Exercise 14, page 330 /* Create three interfaces, each with two methods. Inherit a new interface * that combines the three, adding a new method.
www.eeworm.com/read/399996/7816852

m feature_selection_commands.m

function feature_selection_commands(command) %This function deals with commands generated by the feature selection module persistent methods; if isempty(methods) methods = read_algorithms('
www.eeworm.com/read/434325/7874198

m lusolv.m

function [X,Y] = lusolv(A,B,row) %--------------------------------------------------------------------------- %LUSOLV LU solution of a linear system. % Forward substitution followed %
www.eeworm.com/read/434325/7874253

m simprl.m

function s = simprl(f,a,b,m) %--------------------------------------------------------------------------- %SIMPRL Quadrature using Simpson`s rule. % Sample call % s = simprl('f',a,b,m) % Inpu
www.eeworm.com/read/434325/7874263

m a7algos.m

%--------------------------------------------------------------------------- %A7ALGOS % % NUMERICAL METHODS: MATLAB Programs, (c) John H. Mathews 1995 % To accompany the text: % NUMERICAL METHODS
www.eeworm.com/read/434325/7874567

m contents.m

NUMERICAL METHODS: MATLAB Programs (c) 1995 by John H. Mathews To Accompany NUMERICAL METHODS for Mathe
www.eeworm.com/read/434325/7874579

m eulers.m

function [T,Y] = eulers(f,a,b,ya,m) %--------------------------------------------------------------------------- %EULER Euler's solution for y' = f(t,y) with y(a) = ya. % Sample call % [T,Y] =
www.eeworm.com/read/434325/7874598

m heun.m

function [T,Y] = heun(f,a,b,ya,m) %--------------------------------------------------------------------------- %HEUN Heun's solution for y' = f(t,y) with y(a) = ya. % Sample call % [T,Y] = heu