TMtx::IFFT1DToReal Method

Overload List

#SignatureDescription
1TMtx *IFFT1DToReal(bool NoScale = false);Inverse parallel in-place 1D FFT from complex to real.
2TMtx *IFFT1DToReal(TMtx *Mtx, bool NoScale = false);Inverse parallel not in-place 1D complex to real FFT.

Overload 1: TMtx *IFFT1DToReal(bool NoScale = false);

Inverse parallel in-place 1D FFT from complex to real.

#NameTypeDescription
1NoScale = falsebool
Remarks:

Performs inverse 1D FFT from complex to real on each row of the matrix. See TVec::IFFTToReal for more info on the inverse complex to real 1D FFT. NoScale parameter allows the scaling to be turned off. The scaling scales the result by 1/(Length_Of_FFT)

Declared in Dew::Math::TMtx · Dew.Math/MtxVec.h · Cross-compiler

Overload 2: TMtx *IFFT1DToReal(TMtx *Mtx, bool NoScale = false);

Inverse parallel not in-place 1D complex to real FFT.

#NameTypeDescription
1MtxTMtx *
2NoScale = falsebool
Remarks:

The size of the destination is set automatically.

Declared in Dew::Math::TMtx · Dew.Math/MtxVec.h · Cross-compiler