代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/122349/14699100
h matrix_market_stream.h
// -*- c++ -*-
//
// Copyright 1997, 1998, 1999 University of Notre Dame.
// Authors: Andrew Lumsdaine, Jeremy G. Siek, Lie-Quan Lee
//
// This file is part of the Matrix Template Library
//
// You sh
www.eeworm.com/read/221894/14715481
cpp 8_1.cpp
#include
class complex //复数类声明
{
public: //外部接口
complex(double r=0.0,double i=0.0){real=r;imag=i;} //构造函数
complex operator + (complex c2); //运算符+重载成员函数
complex operator - (complex
www.eeworm.com/read/121673/14744358
cpp 实验4_2.cpp
#include
class complex//定义一个类
{
private: double real,imag;
public : complex(){real=imag=0.0;}
complex(double r, double i)
{real=r;imag=i;}
friend complex operator+(const
www.eeworm.com/read/120254/14808931
cpp 8_72.cpp
#include
class complex
{
float a,b;
public:
complex(){a=0.0;b=0.0;cout
www.eeworm.com/read/119461/14830178
txt 简单数学运算.txt
#include <iostream.h>
class complex
{
public:
complex() { real=imag=0; }
complex(double r, double i)
{
real = r, imag = i;
}
complex operator +(const complex &c);
complex operator -(const
www.eeworm.com/read/219695/14869592
h harwell_boeing_stream.h
// -*- c++ -*-
//
// Copyright 1997, 1998, 1999 University of Notre Dame.
// Authors: Andrew Lumsdaine, Jeremy G. Siek, Lie-Quan Lee
//
// This file is part of the Matrix Template Library
//
// You sh
www.eeworm.com/read/219695/14869641
h matrix_market_stream.h
// -*- c++ -*-
//
// Copyright 1997, 1998, 1999 University of Notre Dame.
// Authors: Andrew Lumsdaine, Jeremy G. Siek, Lie-Quan Lee
//
// This file is part of the Matrix Template Library
//
// You sh
www.eeworm.com/read/218897/14903210
h fretrans.h
// FreTrans.h
#ifndef _INC_FreTransAPI
#define _INC_FreTransAPI
#include
using namespace std;
// 函数原型
BOOL WINAPI Fourier(LPSTR lpDIBBits, LONG lWidth, LONG lHeight);
VOID WIN
www.eeworm.com/read/217977/14941920
h dip.h
#ifndef DIP_H
#define DIP_H
#define WIN31
#define PI 3.1415926
#include
#include
#include
#include
#include
#include
#includ
www.eeworm.com/read/117050/14943464
h fretrans.h
// FreTrans.h
#ifndef _INC_FreTransAPI
#define _INC_FreTransAPI
#include
using namespace std;
// 函数原型
VOID WINAPI FFT(complex * TD, complex * FD, int r);
VOID