Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function IFFT1D(const Mtx: TMtx; NoScale: Boolean): TMtx; | Inverse parallel not in-place 1D FFT. |
| 2 | function IFFT1D(NoScale: Boolean): TMtx; | Inverse parallel in-place 1D FFT. |
Overload 1: function IFFT1D(const Mtx: TMtx; NoScale: Boolean): TMtx;
Inverse parallel not in-place 1D FFT.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Mtx | TMtx | |
| 2 | NoScale | Boolean |
Result: stored in self (calling object), returns self for chaining
Remarks:
The size of the destination is set automatically.
Overload 2: function IFFT1D(NoScale: Boolean): TMtx;
Inverse parallel in-place 1D FFT.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | NoScale | Boolean |
Result: stored in self (calling object), returns self for chaining
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).