代码搜索:construct

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

代码结果 6,584
www.eeworm.com/read/173453/9657346

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/268251/11148562

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/201477/15407553

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/111603/15509369

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
www.eeworm.com/read/110993/15520938

cpp constructororder.cpp

//: C24:ConstructorOrder.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 1999 // Copyright notice in Copyright.txt // Order of construct
www.eeworm.com/read/101201/15841833

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/388906/8564914

hlp clips.hlp

0MBEGIN-ENTRY-MAIN HELP_USAGE FUNCTION_SUMMARY RELEASE_NOTES COMMAND_SUMMARY CONSTRUCT_SUMMARY INTEGRATED_EDITOR END-ENTRY 1IBEGIN-ENTRY-HELP_USAGE
www.eeworm.com/read/388426/8610047

m cluster.m

function T = cluster(Z, cutoff, depth) %CLUSTER Construct clusters from LINKAGE output. % T = CLUSTER(Z, CUTOFF) constructs clusters from cluster tree Z. Z % is a matrix of size M-1 by 3, gene
www.eeworm.com/read/386050/8769553

m confmat.m

%CONFMAT Construct confusion matrix % % [C,NE,LABLIST] = CONFMAT(LAB1,LAB2,METHOD,FID) % % INPUT % LAB1 Set of labels % LAB2 Set of labels % METHOD 'count' (default) to count n
www.eeworm.com/read/381133/9108059

h tsample.h

#ifndef __TSAMPLE_H #define __TSAMPLE_H #include // support 16-bit sample class TSample { // Construct public: inline TSample() : iData(NULL){} inline TSample(TInt16* a