PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_sum_fft_hermitian_1d_rfmt (c06fb)
Purpose
nag_sum_fft_hermitian_1d_rfmt (c06fb) calculates the discrete Fourier transform of a Hermitian sequence of complex data values (using a work array for extra speed).
Syntax
[
x,
ifail] = nag_sum_fft_hermitian_1d_rfmt(
x, 'n',
n)
Description
Given a Hermitian sequence of
complex data values
(i.e., a sequence such that
is real and
is the complex conjugate of
, for
),
nag_sum_fft_hermitian_1d_rfmt (c06fb) 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 function should be preceded by forming the complex conjugates of the
; that is,
, for
.
nag_sum_fft_hermitian_1d_rfmt (c06fb) uses the fast Fourier transform (FFT) algorithm (see
Brigham (1974)). There are some restrictions on the value of
(see
Arguments).
References
Brigham E O (1974) The Fast Fourier Transform Prentice–Hall
Parameters
Compulsory Input Parameters
- 1:
– double array
-
The sequence to be transformed stored in Hermitian form. If the data values
are written as
, and if
x is declared with bounds
in the function from which
nag_sum_fft_hermitian_1d_rfmt (c06fb) is called, then for
,
is contained in
, and for
,
is contained in
. (See also
Real transforms in the C06 Chapter Introduction and
Example.)
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the dimension of the array
x.
, the number of data values. The largest prime factor of
n must not exceed
, and the total number of prime factors of
n, counting repetitions, must not exceed
.
Constraint:
.
Output Parameters
- 1:
– double array
-
The components of the discrete Fourier transform
. If
x is declared with bounds
in the function from which
nag_sum_fft_hermitian_1d_rfmt (c06fb) is called, then
is stored in
, for
.
- 2:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Errors or warnings detected by the function:
-
-
At least one of the prime factors of
n is greater than
.
-
-
n has more than
prime factors.
-
-
-
-
An unexpected error has occurred in an internal call. Check all function calls and array dimensions. Seek expert help.
-
An unexpected error has been triggered by this routine. Please
contact
NAG.
-
Your licence key may have expired or may not have been installed correctly.
-
Dynamic memory allocation failed.
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).
Further Comments
The time taken is approximately proportional to , but also depends on the factorization of . nag_sum_fft_hermitian_1d_rfmt (c06fb) is faster if the only prime factors of are , or ; and fastest of all if is a power of .
Example
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
nag_sum_fft_hermitian_1d_rfmt (c06fb)) is printed out. It then performs an inverse transform using
nag_sum_fft_real_1d_rfmt (c06fa) and conjugation, and prints the sequence so obtained alongside the original data values.
Open in the MATLAB editor:
c06fb_example
function c06fb_example
fprintf('c06fb example results\n\n');
n = 7;
x = [0.34907; 0.5489; 0.74776; 0.94459;
1.1385; 1.3285; 1.5137];
[xtrans, ifail] = c06fa(x);
z = nag_herm2complex(xtrans);
disp('Discrete Fourier Transform of x:');
disp(transpose(z));
[xres] = nag_hermconj(xtrans);
[xres, ifail] = c06fb(xres);
fprintf('Original sequence as restored by inverse transform\n\n');
fprintf(' Original Restored\n');
for j = 1:n
fprintf('%3d %7.4f %7.4f\n',j, x(j),xres(j));
end
function [z] = nag_herm2complex(x);
n = int64(size(x,1));
z(1) = complex(x(1));
for j = 2:floor((n-1)/2) + 1
z(j) = x(j) + i*x(n-j+2);
z(n-j+2) = x(j) - i*x(n-j+2);
end
if (mod(n,2)==0)
z(n/2+1) = complex(x(n/2+1));
end
function [xconj] = nag_hermconj(x);
n = size(x,1);
n2 = floor((n+4)/2);
xconj = x;
for j = n2:n
xconj(j) = -x(j);
end
c06fb example results
Discrete Fourier Transform of x:
2.4836 + 0.0000i
-0.2660 + 0.5309i
-0.2577 + 0.2030i
-0.2564 + 0.0581i
-0.2564 - 0.0581i
-0.2577 - 0.2030i
-0.2660 - 0.5309i
Original sequence as restored by inverse transform
Original Restored
1 0.3491 0.3491
2 0.5489 0.5489
3 0.7478 0.7478
4 0.9446 0.9446
5 1.1385 1.1385
6 1.3285 1.3285
7 1.5137 1.5137
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015