代码搜索:construct
找到约 6,584 项符合「construct」的源代码
代码结果 6,584
www.eeworm.com/read/456187/7355775
java geometricobject.java
// GeometricObject.java: The abstract GeometricObject class
public abstract class GeometricObject {
private String color = "white";
private boolean filled;
/**Default construct*/
protec
www.eeworm.com/read/449504/7502553
m contents.m
% Utility function library -- Jim LeSage
%
%
% accumulate : accumulates column elements of a matrix x
% blockdiag : Construct a block-diagonal matrix with the inputs on the diagonals.
www.eeworm.com/read/446628/7574539
pas demo.pas
unit Demo;
interface
uses
SysUtils, Windows, Messages, Classes, Dialogs;
type
TEngine = class(TObject)
private
FCapacity: Integer;
FPower: Integer;
public
construct
www.eeworm.com/read/445660/7592214
txt points to the distance segment.txt
// distance to a segment
// construct a line perpendicular to the segment
// if the two end points of the line is on the same side of this line
// return min distance to the end points
// return d
www.eeworm.com/read/441581/7668610
doc specification files.doc
Specification File
adjacencyListGragh
class GeneralGraph:
use adjacency list to implement the graph which data structure is vector
Construct methods:
* public GeneralGraph():
contain an empt
www.eeworm.com/read/331444/12827783
m buildsfpyr.m
% [PYR, INDICES, STEERMTX, HARMONICS] = buildSFpyr(IM, HEIGHT, ORDER, TWIDTH)
%
% Construct a steerable pyramid on matrix IM, in the Fourier domain.
% This is similar to buildSpyr, except that:
%
%
www.eeworm.com/read/243813/12915245
java geometricobject.java
// GeometricObject.java: The abstract GeometricObject class
public abstract class GeometricObject
{
protected String color;
protected double weight;
// Default construct
protected Geom
www.eeworm.com/read/141313/13023279
h scsi2.h
/*******************************************************************/
//scsi data format and construct
extern UWord16 SCSI_INQUIRY[36];
extern UWord16 SCSIDATA_ReadFormatCapacities[];
exter
www.eeworm.com/read/322098/13389903
h czip.h
//
// classes CZip and CUnzip
// usage :
// * construct a CZip/CUnzip object with an unzipped/zipped file name
// * use SwapSize on that object to build a zipp/unzipped file
//
// SwapSiz
www.eeworm.com/read/136031/13877561
cpp list11-4.cpp
// Listing 11.4
// This program demonstrates how
// easy it is to construct and use
// complex numbers with the standard
// complex class.
#include
#include
using n