代码搜索:construct

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

代码结果 6,584
www.eeworm.com/read/178278/9410792

m gflineq.m

function [x, vld] = gflineq(a, b, p) vld = 0; % construct an [A, B] matrix and assign initial value aa = [a b]; x = aa(:); if ((max(x) >=p) | (min(x) < 0) | ~isempty(find(floor(x) ~= x))) error('E
www.eeworm.com/read/168218/9932501

h vector.h

#ifndef Vector_ #define Vector_ #include #include "xcept.h" template class Vector { public: Vector(int size = 0); Vector(const Vector& v); //copy construct
www.eeworm.com/read/166201/10029545

txt nerve program.txt

神经网络源程序 % Construct the network object net = network; % Specify the input and layer size net.numInputs = 1; net.numLayers = 3; % Set connections among all parts net.biasConnect = [1;
www.eeworm.com/read/361765/10036878

rd mcmcmetrop1r.rd

\name{MCMCmetrop1R} \alias{MCMCmetrop1R} \title{Metropolis Sampling from User-Written R function} \description{ This function allows a user to construct a sample from a user-defined continuous dis
www.eeworm.com/read/163827/10143250

txt paper4.txt

.EQ delim $$ .EN .ls 1 .ce PROGRAMMING BY EXAMPLE REVISITED .sp .ce by John G. Cleary .ce Man-Machine Systems Laboratory .ce University of Calgary. .sp .sh "Introduction" .pp Efforts to construct an a
www.eeworm.com/read/163824/10143272

txt paper4.txt

.EQ delim $$ .EN .ls 1 .ce PROGRAMMING BY EXAMPLE REVISITED .sp .ce by John G. Cleary .ce Man-Machine Systems Laboratory .ce University of Calgary. .sp .sh "Introduction" .pp Efforts to construct an a
www.eeworm.com/read/358191/10194441

h vector.h

#ifndef Vector_ #define Vector_ #include #include "xcept.h" template class Vector { public: Vector(int size = 0); Vector(const Vector& v); //copy construct
www.eeworm.com/read/357120/10215894

h frustum.h

#ifndef _FRUSTUM_H_ #define _FRUSTUM_H_ class cFrustum { private: D3DXPLANE m_Planes[6]; public: BOOL Construct(cGraphics *Graphics, float ZDistance = 0.0f); BOOL CheckPoin
www.eeworm.com/read/161587/10394531

h vector.h

#ifndef Vector_ #define Vector_ #include #include "xcept.h" template class Vector { public: Vector(int size = 0); Vector(const Vector& v); //copy construct
www.eeworm.com/read/351797/10609838

m polynomial.m

function ker = polynomial(arg) % POLYNOMIAL % % Construct a polynomial kernel object, % % K(x1, x2) = (x1*x2' + 1).^d; % % Examples: % % % default constructor (quadratic kernel, d = 2