Matrix.FFT1DFromReal Method

Overload List

#SignatureDescription
1function FFT1DFromReal: TMtx;Forward parallel in-place 1D FFT from real to complex.
2function 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.

#NameTypeDescription
1MtxTMtx

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