fft1
Syntax | ||
void fft1(float *data,int nn,int isign); | ||
Header | ||
base/fft.h | ||
Library | ||
rmath | ||
Description | ||
The The argument data is a pointer to the array of single-precision floating point numbers to transform. The argument nn indicates the number of points or values in the array. The final argument isign indicates the direction of the transform. A value of (1) indicates a forward transform, while (-1) indicates the inverse transform. This code is an implementation of the FFT algorithm found in Numerical Recipes | ||
Returns | ||
None | ||
Errors | ||
None | ||
Example | ||
|