adtFFT
adtFFT(l_list) =>l_result/nil
Description
Calculates the fast Fourier transform (FFT) of the specified list.
Arguments
Value Returned
Examples
The following example calculates FFT for the specified values.
adtFFT(list(3 9 2 5 1))
=> (complex(20, 0) complex(0.427051, -5.8451) complex(-2.92705, -7.55545) complex(-2.92705, 7.55545) complex(0.427051, 5.8451))
Return to top