代码搜索:complex

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

代码结果 10,000
www.eeworm.com/read/190666/5173151

c defarg4.c

// Build don't link: // Origin: scott snyder class complex { public: complex(); }; struct MLC33 { MLC33( const complex& = complex() ); }; void EmptyClone() { MLC33(); } voi
www.eeworm.com/read/340665/3273806

c defarg4.c

// Build don't link: // Origin: scott snyder class complex { public: complex(); }; struct MLC33 { MLC33( const complex& = complex() ); }; void EmptyClone() { MLC33(); } voi
www.eeworm.com/read/326711/3470085

c fig17_14.c

// Fig 17.14: fig17_14.c // Using complex numbers in C99 #include #include // for complex type and math functions int main() { double complex a = 32.123 + 24.456 * I;
www.eeworm.com/read/303435/3811244

lib intlinc.cwp.lib

INTLINC - evaluate complex y(x) via linear interpolation of y(x[0]), y(x[1]), ... Function Prototype: void intlinc (int nin, float xin[], complex yin[], complex yinl, complex yinr, int nout, float x
www.eeworm.com/read/303435/3811375

lib pfafft.cwp.lib

PFAFFT - Functions to perform Prime Factor (PFA) FFT's, in place npfa return valid n for complex-to-complex PFA npfar return valid n for real-to-complex/complex-to-real PFA npfao return optimal n
www.eeworm.com/read/440906/1775438

c defarg4.c

// Build don't link: // Origin: scott snyder class complex { public: complex(); }; struct MLC33 { MLC33( const complex& = complex() ); }; void EmptyClone() { MLC33(); } voi
www.eeworm.com/read/366702/2869423

c defarg4.c

// { dg-do assemble } // Origin: scott snyder class complex { public: complex(); }; struct MLC33 { MLC33( const complex& = complex() ); }; void EmptyClone() { MLC33(); } v
www.eeworm.com/read/319487/13450550

cc ch6.1.cc

#include #include class Cmpx { // class for complex numbers private: double re; // real part of a complex number double im; // imaginal part of a complex n
www.eeworm.com/read/326711/3469911

cpp fig22_21.cpp

// Fig. 22.21: fig22_21.cpp // Complex class test program. #include using std::cout; using std::endl; #include "Complex.h" int main() { Complex x; Complex y( 4.3, 8.2 );
www.eeworm.com/read/277819/4150578

cpp 8_3.cpp

#include class complex //复数类声明 { public: //外部接口 complex(double r=0.0,double i=0.0){real=r;imag=i;} //构造函数 friend complex operator + (complex c1,complex c2); //运算符+重载友元函数 friend co