NAG Library Routine Document
C06FXF
1 Purpose
C06FXF computes the three-dimensional discrete Fourier transform of a trivariate sequence of complex data values. This routine is designed to be particularly efficient on vector processors.
2 Specification
SUBROUTINE C06FXF ( |
N1, N2, N3, X, Y, INIT, TRIGN1, TRIGN2, TRIGN3, WORK, IFAIL) |
INTEGER |
N1, N2, N3, IFAIL |
REAL (KIND=nag_wp) |
X(N1*N2*N3), Y(N1*N2*N3), TRIGN1(2*N1), TRIGN2(2*N2), TRIGN3(2*N3), WORK(2*N1*N2*N3) |
CHARACTER(1) |
INIT |
|
3 Description
C06FXF computes the three-dimensional discrete Fourier transform of a trivariate sequence of complex data values
, for , and .
The discrete Fourier transform is here defined by
where
,
,
.
(Note the scale factor of in this definition.)
To compute the inverse discrete Fourier transform, defined with in the above formula instead of , this routine should be preceded and followed by forming the complex conjugates of the data values and the transform.
This routine performs, for each dimension, multiple one-dimensional discrete Fourier transforms by the fast Fourier transform (FFT) algorithm (see
Brigham (1974)). It is designed to be particularly efficient on vector processors.
4 References
Brigham E O (1974) The Fast Fourier Transform Prentice–Hall
Temperton C (1983) Self-sorting mixed-radix fast Fourier transforms J. Comput. Phys. 52 1–23
5 Parameters
- 1: N1 – INTEGERInput
On entry: , the first dimension of the transform.
Constraint:
.
- 2: N2 – INTEGERInput
On entry: , the second dimension of the transform.
Constraint:
.
- 3: N3 – INTEGERInput
On entry: , the third dimension of the transform.
Constraint:
.
- 4: X() – REAL (KIND=nag_wp) arrayInput/Output
- 5: Y() – REAL (KIND=nag_wp) arrayInput/Output
On entry: the real and imaginary parts of the complex data values must be stored in arrays
X and
Y respectively. If
X and
Y are regarded as three-dimensional arrays of dimension
, then
and
must contain the real and imaginary parts of
.
On exit: the real and imaginary parts respectively of the corresponding elements of the computed transform.
- 6: INIT – CHARACTER(1)Input
On entry: indicates whether trigonometric coefficients are to be calculated.
- Calculate the required trigonometric coefficients for the given values of , and , and store in the corresponding arrays TRIGN1, TRIGN2 and TRIGN3.
- or
- The required trigonometric coefficients are assumed to have been calculated and stored in the arrays TRIGN1, TRIGN2 and TRIGN3 in a prior call to C06FXF. The routine performs a simple check that the current values of , and are consistent with the corresponding values stored in TRIGN1, TRIGN2 and TRIGN3.
Constraint:
, or .
- 7: TRIGN1() – REAL (KIND=nag_wp) arrayInput/Output
- 8: TRIGN2() – REAL (KIND=nag_wp) arrayInput/Output
- 9: TRIGN3() – REAL (KIND=nag_wp) arrayInput/Output
On entry: if
or
,
TRIGN1,
TRIGN2 and
TRIGN3 must contain the required coefficients calculated in a previous call of the routine. Otherwise
TRIGN1,
TRIGN2 and
TRIGN3 need not be set. If
, the same array may be supplied for
TRIGN1 and
TRIGN2. Similar considerations apply if
or
.
On exit:
TRIGN1,
TRIGN2 and
TRIGN3 contain the required coefficients (computed by the routine if
).
- 10: WORK() – REAL (KIND=nag_wp) arrayWorkspace
- 11: 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, | , or . |
-
Not used at this Mark.
-
On entry, | or , but at least one of the arrays TRIGN1, TRIGN2 and TRIGN3 is inconsistent with the current value of N1, N2 or N3. |
-
An unexpected error has occurred in an internal call. Check all subroutine calls and array dimensions. Seek expert help.
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 the individual dimensions , and . C06FXF is faster if the only prime factors are , or ; and fastest of all if they are powers of .
9 Example
This example reads in a trivariate sequence of complex data values and prints the three-dimensional Fourier transform. It then performs an inverse transform and prints the sequence so obtained, which may be compared to the original data values.
9.1 Program Text
Program Text (c06fxfe.f90)
9.2 Program Data
Program Data (c06fxfe.d)
9.3 Program Results
Program Results (c06fxfe.r)