Matrix::IFFT1D Method

Overload List

#SignatureDescription
1TMtx *IFFT1D(bool NoScale = false) const;Inverse parallel in-place 1D FFT.
2TMtx *IFFT1D(TMtx *Mtx, bool NoScale = false) const;Inverse parallel not in-place 1D FFT.

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

Inverse parallel in-place 1D FFT.

#NameTypeDescription
1NoScale = falsebool
Remarks:

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

Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler

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

Inverse parallel not in-place 1D FFT.

#NameTypeDescription
1MtxTMtx *
2NoScale = falsebool
Remarks:

The size of the destination is set automatically.

Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler