代码搜索:complex

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

代码结果 10,000
www.eeworm.com/read/101082/6241587

c c_exp.c

/* * "@(#)c_exp.c 1.1" */ #include "complex" c_exp(r, z) complex *r, *z; { double expx; double exp(), cos(), sin(); expx = exp(z->real); r->real = expx * cos(z->imag); r->imag = expx * sin(z->ima
www.eeworm.com/read/101082/6241596

c z_sin.c

/* * "@(#)z_sin.c 1.1" */ #include "complex" z_sin(r, z) dcomplex *r, *z; { double sin(), cos(), sinh(), cosh(); r->dreal = sin(z->dreal) * cosh(z->dimag); r->dimag = cos(z->dreal) * sinh(z->dima
www.eeworm.com/read/101082/6241615

c c_abs.c

/* * "@(#)c_abs.c 1.1" */ #include "complex" float c_abs(z) complex *z; { double cabs(); return( cabs( z->real, z->imag ) ); }
www.eeworm.com/read/101082/6241639

c c_cos.c

/* * "@(#)c_cos.c 1.1" */ #include "complex" c_cos(r, z) complex *r, *z; { double sin(), cos(), sinh(), cosh(); r->real = cos(z->real) * cosh(z->imag); r->imag = - sin(z->real) * sinh(z->imag); }
www.eeworm.com/read/101082/6241672

c z_cos.c

/* * "@(#)z_cos.c 1.1" */ #include "complex" z_cos(r, z) dcomplex *r, *z; { double sin(), cos(), sinh(), cosh(); r->dreal = cos(z->dreal) * cosh(z->dimag); r->dimag = - sin(z->dreal) * sinh(z->di
www.eeworm.com/read/101082/6241701

c c_sin.c

/* * "@(#)c_sin.c 1.1" */ #include "complex" c_sin(r, z) complex *r, *z; { double sin(), cos(), sinh(), cosh(); r->real = sin(z->real) * cosh(z->imag); r->imag = cos(z->real) * sinh(z->imag); }
www.eeworm.com/read/126757/6314969

c test_fft.c

/* test_fft.c - Example to test floating-point Complex FFT */ #include #include "fcomplex.h" /* floating-point complex.h header file */ #include "input7_f.dat" /* Experiment
www.eeworm.com/read/126757/6314975

c w_table.c

/* w_table.c - Generate twiddle factor lookup table */ #include "icomplex.h" #include #define pi 3.1415926535897 void w_table
www.eeworm.com/read/126757/6314986

c exp7b.c

/* exp7b.c - Example to test FFT (fixed-point) Use Twiddle lookup-table method */ #include "icomplex.h" #include "input7_i.dat" /* Experiment data */ extern void fft(comp
www.eeworm.com/read/126757/6315006

c fbit_rev.c

/* fbit_rev.c Arrange input samples in bit-reverse addressing order - the index j is the bit reverse of i */ #include "fcomplex.h" /* floating-point complex.h header file */