Given a Hermitian sequence of
complex data values
(i.e., a sequence such that
is real and
is the complex conjugate of
, for
), C06FBF calculates their discrete Fourier transform defined by
(Note the scale factor of
in this definition.) The transformed values
are purely real (see also the
C06 Chapter Introduction).
To compute the inverse discrete Fourier transform defined by
this routine should be preceded by forming the complex conjugates of the
; that is,
, for
.
C06FBF uses the fast Fourier transform (FFT) algorithm (see
Brigham (1974)). There are some restrictions on the value of
(see
Section 5).
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
X04AAF).
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).
This example reads in a sequence of real data values which is assumed to be a Hermitian sequence of complex data values stored in Hermitian form. The input sequence is expanded into a full complex sequence and printed alongside the original sequence. The discrete Fourier transform (as computed by C06FBF) is printed out. It then performs an inverse transform using
C06FAF and conjugation, and prints the sequence so obtained alongside the original data values.