代码搜索:complex

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

代码结果 10,000
www.eeworm.com/read/406421/11442705

cpp d_cmplx.cpp

// // file = d_cmplx.cpp // #include #include #include "d_cmplx.h" ostream& operator
www.eeworm.com/read/406421/11442718

cpp cbitrev.cpp

// // File = cbitrev.cpp // #include "d_cmplx.h" #include "cbitrev.h" void ComplexBitReverse( double_complex *array, int size) { double_complex tt; int nv2, nm1, i, j, k;
www.eeworm.com/read/404153/11490981

c example 5-1.c

// Example 5 - 1. Single-Precision Complex FIR Filter C Listing void sp_fir_cplx(float * x, float * h, float * r, int nh, int nr) { int i,j; float imag, real; for (i = 0; i < 2*nr; i +=
www.eeworm.com/read/400386/11578093

cpp xt10-1.cpp

#include using namespace std; class Complex {public: Complex(){real=0;imag=0;} Complex(double r,double i){real=r;imag=i;} double get_real(); double get_imag(); void
www.eeworm.com/read/260437/11725493

cpp cell.cpp

#include "cell.h" cell::cell() { c=1; s=0; Uin=0; } double cell::get_c() { return c; } complex2 cell::get_s() { return s; }
www.eeworm.com/read/260437/11725608

cpp lineinternalcell.cpp

#include "lineInternalCell.h" lineInternalCell::lineInternalCell() { Zin=0; r=0; Wout=0; Zout=0; Win=0; } int lineInternalCell::caculation() { Zout=Zin+r.conjugate()*Win.conjugate
www.eeworm.com/read/346459/11743349

m real.m

function y = real(x) % REAL Complex real part. % $Id: real.m 3 2004-02-04 12:57:04Z mairas $ y = x; y.s = real(y.s);
www.eeworm.com/read/345930/11781724

cpp xt10-1.cpp

#include using namespace std; class Complex {public: Complex(){real=0;imag=0;} Complex(double r,double i){real=r;imag=i;} double get_real(); double get_imag(); void
www.eeworm.com/read/345926/11782029

cpp vc0904.cpp

// Example 9-4: 复数类 #include class Complex { double m_fReal, m_fImag; public: Complex(double r = 0, double i = 0): m_fReal(r), m_fImag(i){} double Real(){return m_fReal;} doub
www.eeworm.com/read/345167/11834401

cpp rootmontecarlocomplex.cpp

//RootMonteCarloComplex.cpp //MonteCarlo法求解非线性方程一复根 #define FM //注解此行,将调用FunctionModule2() #ifdef FM #define FunctionModule FunctionModule1 #else #define FunctionModule FunctionModule2