You are here: Symbol Reference > MtxExpr Namespace > Classes > Vector Record > public > IFFT Method > Vector.IFFT Method (boolean)
MtxVec VCL
ContentsIndex
PreviousUpNext
Vector.IFFT Method (boolean)

The inverse backward FFT from complex to complex.

Pascal
function IFFT(NoScale: boolean = False): TVec; overload;

Calculates the inverse (backward) Fast Fourier Transformation (FFT) from complex to complex for all calling vector elements in-place. If the NoScale parameter is true, then no scaling is performed for the calling vector. The results can be erroneous if overflow or underflow occurs.

var a,b: Vector; begin a.SetIt(True,[1,2,3,4]); b.IFFT(a,True); end;
Examples on GitHub
Copyright (c) 1999-2025 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!