Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function FFT1DFromReal: TMtx; | Forward parallel in-place 1D FFT from real to complex. |
| 2 | function FFT1DFromReal(const Mtx: TMtx): TMtx; | Forward parallel not in-place 1D real to complex FFT. The size of the destination is set automatically. |
Overload 1: function FFT1DFromReal: TMtx;
Forward parallel in-place 1D FFT from real to complex.
Result: stored in self (calling object), returns self for chaining
Remarks:
Performs forward 1D FFT from real to complex on each row of the matrix. See Vector.FFTFromReal for more info on the forward real FFT.
Overload 2: function FFT1DFromReal(const Mtx: TMtx): TMtx;
Forward parallel not in-place 1D real to complex 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