Matrix.FFT1D Method

Overload List

#SignatureDescription
1function FFT1D: TMtx;Forward parallel in-place 1D FFT.
2function 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.

#NameTypeDescription
1MtxTMtx

Result: stored in self (calling object), returns self for chaining