代码搜索:Method

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

代码结果 10,000
www.eeworm.com/read/320482/13426214

java chstr.java

package beans; public class chStr{ /*************************************************** *method name: chStr() *method function:解决输出中文乱码问题 *return value: String *2005-12-05 *******
www.eeworm.com/read/320243/13429785

java calculatorpoa.java

package calc; /** * calc/calculatorPOA.java . * Generated by the IDL-to-Java compiler (portable), version "3.1" * from calculator.idl * 2005年6月15日 星期三 上午09时56分48秒 CST */ public abstract c
www.eeworm.com/read/320243/13429797

java calculatorpoa.java

package calc; /** * calc/calculatorPOA.java . * Generated by the IDL-to-Java compiler (portable), version "3.1" * from calculator.idl * 2005年6月15日 星期三 上午09时56分48秒 CST */ public abstract c
www.eeworm.com/read/319970/13438206

m momttfr.m

function [fm,B2]=momttfr(tfr,method,fbmin,fbmax,freqs); %MOMTTFR Time moments of a time-frequency representation. % [FM,B2]=MOMTTFR(TFR,METHOD,FBMIN,FBMAX,FREQS) computes the time % moments of a time-
www.eeworm.com/read/319970/13438236

m tfrparam.m

function tfrparam(method); %TFRPARAM Return the paramaters needed to display (or save) this TFR. % TFRPARAM(METHOD) returns on the screen the meaning of the % parameters P1..P5 used in the files TFRQV
www.eeworm.com/read/319970/13438274

m tfrsave.m

function tfrsave(name,tfr,method,sig,t,f,p1,p2,p3,p4,p5); %TFRSAVE Save the parameters of a time-frequency representation. % TFRSAVE(NAME,TFR,METHOD,SIG,T,F,P1,P2,P3,P4,P5) saves the % parameters of
www.eeworm.com/read/319487/13450563

cc ch5.10.18.cc

// Ms Lee's account #include #include #include class ode { double tini; // initial time double ison;
www.eeworm.com/read/319487/13450565

cc ch5.9.cc

#include #include #include const double lambda = - 50; const int n = 100; class ode { double tini; // initial time double ison
www.eeworm.com/read/318365/13480389

m mrqmin.m

function [covari,alpha,chisq,alamda,a] = mrqmin(x,y,sig,ndata,a,ia,ma,nca,funcs,alamda,model) % % USES covsrt, gaussj, mrqcof % % Levenberg- Marquardt method, attempting to reduce the value X
www.eeworm.com/read/318362/13480418

java abstracttest.java

abstract class C{ abstract void callme( ); void metoo( ){ System.out.println("Inside C's metoo( ) method"); } }   class D extends C{ void callme( ){ System.out.println("Inside D's cal