DCL:MATH2:FFTLIB: Fast Fourier Transformation: Explanation of Subroutines
Performs Fourier transformation on cyclic complex data: CFFTI initializes; CFFTF performs forward Fourier transformation; and CFFTB performs inverse Fourier transformation.
Below, it is assumed that  .
Forward transformation is defined as follows.
Inverse transformation is defined as follows.
- กก
CALL CFFTI(N,WSAVE)
CALL CFFTF(N,C,WSAVE)
CALL CFFTB(N,C,WSAVE)
N (I) Length of data to process. WSAVE (R) Working array: must have length of at least 4N+15. C (C) Complex array to process. It is both the input and output parameter. (See above definition.)