代码搜索:construct

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

代码结果 6,584
www.eeworm.com/read/283653/9000600

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/283653/9000614

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
www.eeworm.com/read/381211/9103862

m fg_03_12.m

% fg_03_12 samples and waveforms. N=8; t=[0:2:14]; tt=linspace(0,10,500); c=[4 5 5 6]; x=[1 c 6 7 1000; 8 c 1 0 -1000; 3 c 5 5 5]; y=zeros(3,500); % Construct 3 waveforms. for k=1:3 p=pol
www.eeworm.com/read/181390/9256390

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/181390/9256406

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
www.eeworm.com/read/180304/9313077

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/180304/9313096

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
www.eeworm.com/read/366706/9802024

java circle.java

package counttest; // Circle.java: The circle class that extends GeometricObject public class Circle extends GeometricObject { private double radius; /** Construct a circle with default pr
www.eeworm.com/read/366706/9802026

java rectangle.java

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/9802029

java cylinder.java

package counttest; public class Cylinder extends Circle { private double length; /** Construct a cylinder with default properties */ public Cylinder() { this(1.0, 1.0); } /*