Home | History | Annotate | Download | only in FFT

Lines Matching defs:Complex

20   // 2. fftw_complex is compatible with std::complex
21 // This assumes std::complex<T> layout is array of size 2 with real,imag
30 fftw_complex * fftw_cast( const std::complex<double> * p)
36 fftwf_complex * fftw_cast( const std::complex<float> * p)
42 fftwl_complex * fftw_cast( const std::complex<long double> * p)
180 typedef std::complex<Scalar> Complex;
188 // complex-to-complex forward FFT
190 void fwd( Complex * dst,const Complex *src,int nfft)
195 // real-to-complex forward FFT
197 void fwd( Complex * dst,const Scalar * src,int nfft)
202 // 2-d complex-to-complex
204 void fwd2(Complex * dst, const Complex * src, int n0,int n1)
209 // inverse complex-to-complex
211 void inv(Complex * dst,const Complex *src,int nfft)
216 // half-complex to scalar
218 void inv( Scalar * dst,const Complex * src,int nfft)
223 // 2-d complex-to-complex
225 void inv2(Complex * dst, const Complex * src, int n0,int n1)