代码搜索:construct
找到约 6,584 项符合「construct」的源代码
代码结果 6,584
www.eeworm.com/read/406636/11438560
h tblock.h
#ifndef __TBLOCK_H
#define __TBLOCK_H
#include
const TUint8 BLOCKNUM = 15;
class TBlock
{
// construct
public:
TBlock() : iType(0), iRot(0)
{}
TBlock(TUint8 aType,
www.eeworm.com/read/401011/11565882
m uwb_system.m
%JC 3/7/08
%UWB Transmitter/Receiver using BPSK Continuous Wave
%Run from editor debug(F5).
%m-file uses random data which BPSK modulates a
%carrier to construct a BPSK UWB transmitter. The recei
www.eeworm.com/read/261494/11642223
txt overloading overriding runtime type and object orientation (2).txt
作者:jeru
email: jeru@163.net
日期:7/3/2001 10:02:33 AM
Objective 3)
Write code to construct instances of any concrete class including normal top level classes inner classes static inner classes and
www.eeworm.com/read/261198/11659835
m assign_cols.m
function M = assign_cols(cols, vals, M)
% ASSIGN_COLS Assign values to columns of a matrix
% function M = assign_cols(M, cols, vals, M)
%
% Example:
% M = assign_cols(data, ones(1,N))
% will construct
www.eeworm.com/read/344562/11872357
m blkhank.m
% BLKHANK - Construct a block-Hankel matrix.
%
% H = blkhank(w,i,j)
%
% W - structure parameters W(:,:,i), i = 1,...,T
% if W(:,:,i) are Qx1 vectors, W can be a TxNW matrix
% I - number of block r
www.eeworm.com/read/153733/12010447
cc error.cc
#include
#include
#include
#include "error.hh"
#include "sulima.hh"
// Construct an error message from a printf-like template.
Error::Error(const char *m, ...)
{
www.eeworm.com/read/251092/12365188
txt overloading overriding runtime type and object orientation (2).txt
作者:jeru
email: jeru@163.net
日期:7/3/2001 10:02:33 AM
Objective 3)
Write code to construct instances of any concrete class including normal top level classes inner classes static inner classes and
www.eeworm.com/read/128193/14311441
m rbf.m
function ker = rbf(arg)
% RBF
%
% Construct a Gaussian radial basis function (RBF) kernel object,
%
% K(x1, x2) = exp(-gamma.*sum((x1 - x2).^2))
%
% Examples:
%
% % default constructo
www.eeworm.com/read/127943/14326756
java sametypedemo.java
//SameTypeDemo.java
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class SameTypeDemo extends JFrame
{
JButton jb1, jb2, jb3;
//Construct the frame
pu
www.eeworm.com/read/127767/14335955
txt e135. sending a post request using a url.txt
See also e1071 Sending a POST Request Using a Socket.
try {
// Construct data
String data = URLEncoder.encode("key1", "UTF-8") + "=" + URLEncoder.encode("value1", "UTF-8");