c06ea calculates the discrete Fourier transform of a sequence of n real data values. (No extra workspace required.)

Syntax

C#
public static void c06ea(
	double[] x,
	int n,
	out int ifail
)
Visual Basic
Public Shared Sub c06ea ( _
	x As Double(), _
	n As Integer, _
	<OutAttribute> ByRef ifail As Integer _
)
Visual C++
public:
static void c06ea(
	array<double>^ x, 
	int n, 
	[OutAttribute] int% ifail
)
F#
static member c06ea : 
        x : float[] * 
        n : int * 
        ifail : int byref -> unit 

Parameters

x
Type: array<System..::..Double>[]()[][]
An array of size [n]
On entry: if x is declared with bounds 0:n-1 in the method from which c06ea is called, then x[j] must contain xj, for j=0,1,,n-1.
On exit: the discrete Fourier transform stored in Hermitian form. If the components of the transform z^k are written as ak+ibk, and if x is declared with bounds 0:n-1 in the method from which c06ea is called, then for 0kn/2, ak is contained in x[k-1], and for 1kn-1/2, bk is contained in x[n-k]. (See also [] in the C06 class Chapter Introduction and [Example].)
n
Type: System..::..Int32
On entry: n, the number of data values. The largest prime factor of n must not exceed 19, and the total number of prime factors of n, counting repetitions, must not exceed 20.
Constraint: n>1.
ifail
Type: System..::..Int32%
On exit: ifail=0 unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).

Description

Given a sequence of n real data values xj, for j=0,1,,n-1, c06ea calculates their discrete Fourier transform defined by
z^k=1nj=0n-1xj×exp-i2πjkn,  k=0,1,,n-1.
(Note the scale factor of 1n in this definition.) The transformed values z^k are complex, but they form a Hermitian sequence (i.e., z^n-k is the complex conjugate of z^k), so they are completely determined by n real numbers (see also the C06 class).
To compute the inverse discrete Fourier transform defined by
w^k=1nj=0n-1xj×exp+i2πjkn,
this method should be followed by a call of c06gb to form the complex conjugates of the z^k.
c06ea uses the fast Fourier transform (FFT) algorithm (see Brigham (1974)). There are some restrictions on the value of n (see [Parameters]).

References

Brigham E O (1974) The Fast Fourier Transform Prentice–Hall

Error Indicators and Warnings

Errors or warnings detected by the method:
ifail=1
At least one of the prime factors of n is greater than 19.
ifail=2
n has more than 20 prime factors.
ifail=3
On entry,n1.
ifail=4
An unexpected error has occurred in an internal call. Check all method calls and array dimensions. Seek expert help.
ifail=-9000
An error occured, see message report.
ifail=-8000
Negative dimension for array value
ifail=-6000
Invalid Parameters value

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).

Parallelism and Performance

None.

Further Comments

The time taken is approximately proportional to n×logn, but also depends on the factorization of n. c06ea is faster if the only prime factors of n are 2, 3 or 5; and fastest of all if n is a power of 2.
On the other hand, c06ea is particularly slow if n has several unpaired prime factors, i.e., if the ‘square-free’ part of n has several factors. For such values of n, (C06FAF not in this release) (which requires additional real workspace) is considerably faster.

Example

See Also