NAG Library Routine Document
C06FFF
1 Purpose
C06FFF computes the discrete Fourier transform of one variable in a multivariate sequence of complex data values.
2 Specification
INTEGER |
NDIM, L, ND(NDIM), N, LWORK, IFAIL |
REAL (KIND=nag_wp) |
X(N), Y(N), WORK(LWORK) |
|
3 Description
C06FFF computes the discrete Fourier transform of one variable (the th say) in a multivariate sequence of complex data values
, for and , and so on. Thus the individual dimensions are , and the total number of data values is .
The routine computes
one-dimensional transforms defined by
where
.
(Note the scale factor of in this definition.)
To compute the inverse discrete Fourier transforms, defined with in the above formula instead of , this routine should be preceded and followed by the complex conjugation of the data values and the transform (by negating the imaginary parts stored in ).
The data values must be supplied in a pair of one-dimensional arrays (real and imaginary parts separately), in accordance with the Fortran convention for storing multidimensional data (i.e., with the first subscript varying most rapidly).
This routine calls
C06FCF to perform one-dimensional discrete Fourier transforms by the fast Fourier transform (FFT) algorithm in
Brigham (1974), and hence there are some restrictions on the values of
(see
Section 5).
4 References
Brigham E O (1974) The Fast Fourier Transform Prentice–Hall
5 Parameters
- 1: NDIM – INTEGERInput
On entry: , the number of dimensions (or variables) in the multivariate data.
Constraint:
.
- 2: L – INTEGERInput
On entry: , the index of the variable (or dimension) on which the discrete Fourier transform is to be performed.
Constraint:
.
- 3: ND(NDIM) – INTEGER arrayInput
On entry: must contain (the dimension of the th variable) , for . The largest prime factor of must not exceed , and the total number of prime factors of , counting repetitions, must not exceed .
Constraint:
, for .
- 4: N – INTEGERInput
On entry: , the total number of data values.
Constraint:
.
- 5: X(N) – REAL (KIND=nag_wp) arrayInput/Output
On entry: must contain the real part of the complex data value , for ; i.e., the values are stored in consecutive elements of the array according to the Fortran convention for storing multidimensional arrays.
On exit: the real parts of the corresponding elements of the computed transform.
- 6: Y(N) – REAL (KIND=nag_wp) arrayInput/Output
On entry: the imaginary parts of the complex data values, stored in the same way as the real parts in the array
X.
On exit: the imaginary parts of the corresponding elements of the computed transform.
- 7: WORK(LWORK) – REAL (KIND=nag_wp) arrayWorkspace
- 8: LWORK – INTEGERInput
On entry: the dimension of the array
WORK as declared in the (sub)program from which C06FFF is called.
Constraint:
.
- 9: IFAIL – INTEGERInput/Output
-
On entry:
IFAIL must be set to
,
. If you are unfamiliar with this parameter you should refer to
Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is
.
When the value is used it is essential to test the value of IFAIL on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6 Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
X04AAF).
Errors or warnings detected by the routine:
-
-
On entry, | . |
-
-
At least one of the prime factors of is greater than .
-
has more than prime factors.
-
-
7 Accuracy
Some indication of accuracy can be obtained by performing a subsequent inverse transform and comparing the results with the original sequence (in exact arithmetic they would be identical).
The time taken is approximately proportional to , but also depends on the factorization of . C06FFF is faster if the only prime factors of are , or ; and fastest of all if is a power of .
9 Example
This example reads in a bivariate sequence of complex data values and prints the discrete Fourier transform of the second variable. It then performs an inverse transform and prints the sequence so obtained, which may be compared with the original data values.
9.1 Program Text
Program Text (c06fffe.f90)
9.2 Program Data
Program Data (c06fffe.d)
9.3 Program Results
Program Results (c06fffe.r)