代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/225696/14525237
cpp complex.cpp
// complex.cpp: implementation of the Ccomplex class.
//
//////////////////////////////////////////////////////////////////////
#include "complex.h"
///////////////////////////////////////////
www.eeworm.com/read/225696/14525244
h complex.h
// Complex类的定义及实现都在头文件complex.h中完成。
#include
using namespace std;
class CComplex
{
private:
double real;
double image;
public:
CComplex() //不带参数的构造函数,即缺省构造函数
{
www.eeworm.com/read/225696/14525347
cpp complex.cpp
#include
using namespace std;
class CComplex
{
private:
double real;
double image;
public:
CComplex() //不带参数的构造函数,即缺省构造函数
{
real = 0.0;
image = 0.0;
}
CC
www.eeworm.com/read/225696/14525549
cpp complex.cpp
#include
#include "complex.h"
CComplex& CComplex::operator =(const CComplex& c)
{
// 判断是否自复制
if(this == &c)
return *this;
real = c.real;
image = c.image;
return *this;
www.eeworm.com/read/225696/14525557
h complex.h
#include
class CComplex
{
public:
CComplex(){ real = 0.0; image = 0.0; }
CComplex(double rv) { real = rv; image = 0.0; }
CComplex(double rv,double iv) { real = rv; image =iv;}
www.eeworm.com/read/124760/14545472
html complex.html
Mathematic : Complex Matrix : Language C.
Mathc : This group work on numerical computation
www.eeworm.com/read/124620/14557256
h complex.h
// -*- C++ -*- backward compatiblity header.
// Copyright (C) 1994 Free Software Foundation
#ifndef __COMPLEX_H__
#include
#endif
www.eeworm.com/read/224820/14567004
h complex.h
#if !defined COMPLEX_H
#define COMPLEX_H
//------------------------------------
// complex.h
// Complex number
// (c) Reliable Software, 1996
//------------------------------------
#includ
www.eeworm.com/read/124283/14579392
texi complex.texi
@cindex complex numbers
The functions described in this chapter provide support for complex
numbers. The algorithms take care to avoid unnecessary intermediate
underflows and overflows, allowing the
www.eeworm.com/read/223835/14615933
c complex.c
#include
struct complex
{
float real;
float imag;
};
// define structure outside main in pre=processor area to make
// it global. Otherwise functions will not know about it
struct c