代码搜索:Operator
找到约 10,000 项符合「Operator」的源代码
代码结果 10,000
www.eeworm.com/read/305754/13761279
m dyadhi.m
function d = DyadHi(x,qmf)
%
%%%%%%%It's My Own Function!!!!!!
%
% DyadHi -- Hi-Pass //No Downsampling operator (periodized)
% Usage
% d = DyadHi(x,f)
% Inputs
% x 1-d signal at fin
www.eeworm.com/read/234754/13772474
plg khmanager.plg
Build Log
--------------------Configuration: khmanager - Win32 Debug--------------------
Command Lines
Creating command line "rc.exe /l 0x804 /
www.eeworm.com/read/305141/13778380
h matrix.h
// 2003/04/14
// name : Matrix.h
// construct a simple Matrix
// updated latest on 04/15/2003
// update on 05/06/2003
#ifndef MATRIX_H
#define MATRIX_H
#include
#include
www.eeworm.com/read/304950/13782481
cpp 友元.cpp
#include
#include
class Complex{
double Real,Image;
public:
Complex(double r=0.0,double i=0.0):Real(r),Image(i){}//注意:必须对和进行初始化。
Complex(Complex &com){
Real=com.Re
www.eeworm.com/read/304950/13782488
cpp 运算符的重载.cpp
#include
#include
class Complex{
double Real,Image;
public:
Complex(double r=0.0,double i=0.0):Real(r),Image(i){}//注意:必须对和进行初始化。
Complex(Complex &com){
Real=com.Real
www.eeworm.com/read/304950/13782494
cpp 深拷贝.cpp
#include
#include
class student{
char *pName;
public:
student();
student(char *pname);
student(student &s);
~student();
student & operator=(student &s);
};
stu
www.eeworm.com/read/303905/13806529
cpp varnodeu.cpp
#include
#include
#include
#include
#include
#include
#include "book.h"
typedef char Operator;
typedef char* Operand;
enum
www.eeworm.com/read/303905/13806531
h linkfl.h
// Singly-linked list node with freelist support
template class Link {
private:
static Link* freelist; // Head of the freelist
public:
Elem element; // Value
www.eeworm.com/read/303905/13806541
h dlink.h
// Doubly-linked list link node with freelist support
template class Link {
private:
static Link* freelist; // Head of the freelist
public:
Elem element; // Value for
www.eeworm.com/read/303905/13806553
cpp varnodei.cpp
#include
#include
#include
#include
#include
#include
#include "book.h"
typedef char Operator;
typedef char* Operand;
class