代码搜索:construct

找到约 6,584 项符合「construct」的源代码

代码结果 6,584
www.eeworm.com/read/366706/9802034

java~1~ rectangle.java~1~

package counttest; public class Rectangle extends GeometricObject { private double width; private double height; /** Construct a rectangle with default properties */ public Rectangle(
www.eeworm.com/read/366706/9802039

java~1~ cylinder.java~1~

package counttest; public class Cylinder extends Circle { private double length; /** Construct a cylinder with default properties */ public Cylinder() { this(1.0, 1.0); } /*
www.eeworm.com/read/366706/9802062

java~2~ cylinder.java~2~

package counttest; public class Cylinder extends Circle { private double length; /** Construct a cylinder with default properties */ public Cylinder() { this(1.0, 1.0); } /*
www.eeworm.com/read/167829/9951281

java swingworker.java

import javax.swing.SwingUtilities; /** * This is the 3rd version of SwingWorker (also known as * SwingWorker 3), an abstract class that you subclass to * perform GUI-related work in a dedicated t
www.eeworm.com/read/361768/10036604

m newlagmatrix.m

function [y,x]=newlagmatrix(x,nlags,c) % PURPOSE: % Construct an X matrix and a Y vector for use in an AR regression % % USAGE: % [y,x]=newlagmatrix(x,nlags,c) % % INPUTS: % y is
www.eeworm.com/read/360770/10078805

m e671.m

%------------------------------------------------------------------ % Example 6.7.1: Penalty Functions %------------------------------------------------------------------ clc clear p =
www.eeworm.com/read/358827/10178442

m rmbrg.m

function [x,R,err,N] = rmbrg(f,a,b,tol,K) %construct Romberg table to find definite integral of f over [a,b] h = b - a; N = 1; if nargin < 5 K = 10; end R(1,1) = h/2*(feval(f,a)+ feval(f,b)); for
www.eeworm.com/read/355992/10239781

cpp smsabout.cpp

/* * Written By S砤womir Szczyrba * All rights reserved. No warrenties, use at your own risk. * This source is distributed under the GNU GENERAL PUBLIC LICENCE, * see the file
www.eeworm.com/read/281192/10257742

m c_svcdemo.m

% ------- OSU C-SVM CLASSIFIER TOOLBOX Demonstrations--- % % 1) Construct a linear SVM Classifier and test it % 2) Construct a nonlinear SVM Classifier (polynomial kernel) and t
www.eeworm.com/read/281192/10257768

m u_svcdemo.m

% ------- OSU nu-SVM CLASSIFIER TOOLBOX Demonstrations--- % % 1) Construct a linear SVM Classifier and test it % 2) Construct a nonlinear SVM Classifier (polynomial kernel) and