Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtx *IFFT1D(bool NoScale = false) const; | Inverse parallel in-place 1D FFT. |
| 2 | TMtx *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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | NoScale = false | bool |
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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Mtx | TMtx * | |
| 2 | NoScale = false | bool |
Remarks:
The size of the destination is set automatically.
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler