-
Notifications
You must be signed in to change notification settings - Fork 0
signal.Fft.Function.fftReal
Christian d'Heureuse edited this page Jun 7, 2026
·
2 revisions
dsp-collection / signal/Fft / fftReal
function fftReal(x): ComplexArray;Defined in: signal/Fft.ts:169
Computes the FFT of an array of real numbers and returns the complex result.
This version is not optimized for real numbers. The input array can have any size.
ArrayLike<number>
The input values (samples).
An array of complex numbers. It has the same size as the input array. The upper half of the array contains complex conjugates of the lower half.