Given a Hermitian sequence of
complex data values
(i.e., a sequence such that
is real and
is the complex conjugate of
, for
), C06EBF 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 a call of
C06GBF to form the complex conjugates of the
.
C06EBF 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).
On the other hand, C06EBF is particularly slow if
has several unpaired prime factors, i.e., if the ‘square-free’ part of
has several factors.
For such values of
,
C06FBF (which requires an additional
elements of workspace) is considerably faster.
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 C06EBF) is printed out. It then performs an inverse transform using
C06EAF and
C06GBF, and prints the sequence so obtained alongside the original data values.