Product Documentation
Virtuoso Visualization and Analysis XL SKILL Reference
Product Version IC23.1, November 2023

adtFFT

adtFFT(
l_list
)
=> l_result / nil

Description

Calculates the fast Fourier transform (FFT) of the specified list.

Arguments

l_list

List of values for which you want to generate FFT.

Value Returned

l_result

List containing FFT results.

nil

FFT cannot be calculated because of an error.

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
 ⠀
X