代码搜索:complex

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

代码结果 10,000
www.eeworm.com/read/380178/9158584

m plotc.m

%PLOTC plots a complex signal in 2D projection with variable projection angle. %The angle can be modified at any time using the slider: % slider at bottom: angle=0 the projection is the real part of
www.eeworm.com/read/180414/9309140

cpp le_totalchoicegauss.cpp

//LE_TotalChoiceGauss.cpp 全选主元高斯消去法 #include //输入输出流头文件 #include "LinearEquation.h" //线性方程(组)求解头文件 void main() { int i; double a[4][4] = //实系数矩阵 { {0.2368, 0.2471,
www.eeworm.com/read/180414/9309147

cpp le_totalchoicegaussjordan.cpp

//LE_TotalChoiceGaussJordan.cpp 全选主元高斯-约当消去法 #include //输入输出流头文件 #include "LinearEquation.h" //线性方程(组)求解头文件 void main() { int i; double a[4][4] = //实系数矩阵 { {1.0,
www.eeworm.com/read/180019/9322537

cpp 7_61.cpp

#include class complex { float a,b; public: complex(){a=0.0;b=0.0;} complex(float x,float y) {a=x;b=y;} void Add(complex& comp1,complex& comp2); void Sub(complex& comp1,comple
www.eeworm.com/read/179705/9342069

c fft.c

#include #include #include #include #define REAL(z,i) ((z)[2*(i)]) #define IMAG(z,i) ((z)[2*(i)+1]) int main (void) { int i; double dat
www.eeworm.com/read/179705/9342199

am makefile.am

## Process this file with automake to produce Makefile.in info_TEXINFOS = gsl-ref.texi noinst_TEXINFOS = gsl-design.texi gsl_ref_TEXINFOS = err.texi cblas.texi blas.texi min.texi fft.texi rng.texi ra
www.eeworm.com/read/374949/9378136

cpp 7_61.cpp

#include class complex { float a,b; public: complex(){a=0.0;b=0.0;} complex(float x,float y) {a=x;b=y;} void Add(complex& comp1,complex& comp2); void Sub(complex& comp1,comple
www.eeworm.com/read/178375/9406081

c r_fft.c

/* ***************************************************************************** * * GSM AMR-NB speech codec R98 Version 7.6.0 December 12, 2001 * R99 Versi
www.eeworm.com/read/177247/9464055

c test_cfft.c

/* test_cfft.c * * Example of the FFT routine from the Blackfin DSP library * * Results in the output buffer "out" * * See the documentation for more info on the DSP routines * */ #
www.eeworm.com/read/169910/9833119

asm freqflt.asm

; ; freqflt.asm - Routine to perform frequency domain filtering ; ; Protptye: void freqflt(complex *, complex *, unsigned int); ; ; Entry: arg0: AR0 is the pointer to X[] ; ar