Matrix::IFFT2D Method

Overload List

#SignatureDescription
1TMtx *IFFT2D(bool NoScale = false) const;Inverse two-dimensional Fast Fourier Transformation from complex to complex.
2TMtx *IFFT2D(TMtx *Mtx, bool NoScale = false) const;Inverse two-dimensional Fast Fourier Transformation from complex to complex.

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

Inverse two-dimensional Fast Fourier Transformation from complex to complex.

#NameTypeDescription
1NoScale = falsebool
Remarks:

Transformation is applied in-place. Source matrix must be complex. If source matrix is real, an exception will be raised. result matrix will be complex. Size of the calling matrix is not changed. NoScale parameter allows the scaling to be turned off.

See Also: Matrix::FFT2D, Matrix::FFT2DFromReal, Matrix::IFFT2DToReal
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler

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

Inverse two-dimensional Fast Fourier Transformation from complex to complex.

#NameTypeDescription
1MtxTMtx *
2NoScale = falsebool
Remarks:

Transformation is applied on Mtx matrix and results are saved in the calling matrix. The source matrix must be complex. If source matrix is real, an exception will be raised. The source matrix is not changed. Calling matrix will be complex and will have the same size as the source matrix. NoScale parameter allows the scaling to be turned off.

See Also: Matrix::FFT2D, Matrix::FFT2DFromReal, Matrix::IFFT2DToReal
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler