Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function FFT1D: TMtx; | Forward parallel in-place 1D FFT. |
| 2 | function FFT1D(const Mtx: TMtx): TMtx; | Forward parallel not in-place 1D FFT. The size of the destination is set automatically. |
Overload 1: function FFT1D: TMtx;
Forward parallel in-place 1D FFT.
Result: stored in self (calling object), returns self for chaining
Remarks:
Performs forward 1D FFT on each row of the matrix. See Vector.FFT for more info on the forward FFT.
Overload 2: function FFT1D(const Mtx: TMtx): TMtx;
Forward parallel not in-place 1D FFT. The size of the destination is set automatically.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Mtx | TMtx |
Result: stored in self (calling object), returns self for chaining