代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/101018/6261084
rad complex.rad
# this is a more complex data set
26
# top of the room, very reflective
0.0 0.0 0.0 0.76 ##
-10.0 10.0 -10.0
10.0 10.0 -10.0
10.0 10.0 -8.0
-10.0 10.0 -8.0
0.0 0.0 0.0 0.76 ##
-10.0 10.0
www.eeworm.com/read/101018/6261628
rad complex.rad
# this is a more complex data set
26
# top of the room, very reflective
0.0 0.0 0.0 0.76 ##
-10.0 10.0 -10.0
10.0 10.0 -10.0
10.0 10.0 -8.0
-10.0 10.0 -8.0
0.0 0.0 0.0 0.76 ##
-10.0 10.0
www.eeworm.com/read/255407/6291226
c complex.c
#include
#include
inline complex< double >&
operator+=( complex< double > &c, double dval )
{
return c += complex< double >( dval );
}
inline complex< double >&
www.eeworm.com/read/107829/6333261
cpp complex.cpp
//////////////////////////////////////////////////////////////////////
// Complex.h
//
// 操作复数的类 CComplex 的实现代码
//
// 周长发编制, 2002/8
//////////////////////////////////////////////////////////////
www.eeworm.com/read/107829/6333271
h complex.h
//////////////////////////////////////////////////////////////////////
// Complex.h
//
// 操作复数的类 CComplex 的声明接口
//
// 周长发编制, 2002/8
//////////////////////////////////////////////////////////////
www.eeworm.com/read/494289/6381616
cpp complex.cpp
#include "complex.h"
#include
using namespace std;
BOOL Complex::iszero() const
{ if (x.iszero() && y.iszero()) return TRUE; return FALSE; }
Complex& Complex::operator=(const Com
www.eeworm.com/read/494289/6381622
h complex.h
/*
* Quick and dirty complex data type using float arithmetic
* Should be extended
*/
#ifndef COMFLOAT_H
#define COMFLOAT_H
#include "floating.h"
class Complex
{
Float x,y;
pu
www.eeworm.com/read/491761/6434288
h complex.h
// -*- C++ -*- backward compatiblity header.
// Copyright (C) 1994 Free Software Foundation
#ifndef __COMPLEX_H__
#include
#endif
www.eeworm.com/read/488568/6489720
cpp complex.cpp
#include
#include
#include "Complex.h"
using std::cout;
Complex::Complex() {
Real = 0;
Imag = 0;
}
Complex::Complex(double X) {
Real = X;
Imag = 0.0;
}
www.eeworm.com/read/488568/6489744