代码搜索:complex

找到约 10,000 项符合「complex」的源代码

代码结果 10,000
www.eeworm.com/read/250810/12383613

c complex.c

/* * ************************************************************************* * * * * * This confidential and proprietary software may be used only * * * as authorized by a licensing
www.eeworm.com/read/250350/12412070

cpp complex.cpp

#include "stdafx.h" #include "math.h" #include "stdio.h" CComplex::CComplex(double x) { re=x; im=0.; } CComplex::CComplex(int x) { re=(double) x; im=0.; } CComplex::CComplex() {
www.eeworm.com/read/250350/12412074

h complex.h

#include // just needs afx.h to define BOOL, TRUE, and FALSE #define PI 3.141592653589793238462643383 #define SmallNo 1.e-14 #define DEG 0.01745329251994329576923690768 class CComplex {
www.eeworm.com/read/250350/12412305

cpp complex.cpp

#include #include "math.h" #include "stdio.h" #include "complex.h" CComplex::CComplex(double x) { re=x; im=0.; } CComplex::CComplex(int x) { re=(double) x; im=0.; } CC
www.eeworm.com/read/250350/12412352

h complex.h

#include // just needs afx.h to define BOOL, TRUE, and FALSE #define PI 3.141592653589793238462643383 #define SmallNo 1.e-14 #define DEG 0.01745329251994329576923690768 class CComplex {
www.eeworm.com/read/250350/12412696

cpp complex.cpp

#include "stdafx.h" #include "math.h" #include "stdio.h" CComplex::CComplex(double x) { re=x; im=0.; } CComplex::CComplex(int x) { re=(double) x; im=0.; } CComplex::CComplex() {
www.eeworm.com/read/250350/12412713

h complex.h

#include // just needs afx.h to define BOOL, TRUE, and FALSE #define PI 3.141592653589793238462643383 #define SmallNo 1.e-14 #define DEG 0.01745329251994329576923690768 class CComplex {
www.eeworm.com/read/148785/12426859

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/148709/12436224

cpp complex.cpp

//--------------------------------------------------------------------------- #include #pragma hdrstop #include "Complex.h" //----------------------------------------------------------
www.eeworm.com/read/148709/12436229

h complex.h

//--------------------------------------------------------------------------- #ifndef ComplexH #define ComplexH #include template < typename T > class TComplex // : public TObject {