cfftc2 - initialize the trigonometric weight and factor tables or compute the two-dimensional Fast Fourier Transform (forward or inverse) of a two-dimensional complex array. =head1 SYNOPSIS
SUBROUTINE CFFTC2( IOPT, N1, N2, SCALE, X, LDX, Y, LDY, TRIGS, IFAC, * WORK, LWORK, IERR) COMPLEX X(LDX,*), Y(LDY,*) INTEGER IOPT, N1, N2, LDX, LDY, LWORK, IERR INTEGER IFAC(*) REAL SCALE REAL TRIGS(*), WORK(*)
SUBROUTINE CFFTC2_64( IOPT, N1, N2, SCALE, X, LDX, Y, LDY, TRIGS, * IFAC, WORK, LWORK, IERR) COMPLEX X(LDX,*), Y(LDY,*) INTEGER*8 IOPT, N1, N2, LDX, LDY, LWORK, IERR INTEGER*8 IFAC(*) REAL SCALE REAL TRIGS(*), WORK(*)
SUBROUTINE FFT2( IOPT, [N1], [N2], [SCALE], X, [LDX], Y, [LDY], * TRIGS, IFAC, WORK, [LWORK], IERR) COMPLEX, DIMENSION(:,:) :: X, Y INTEGER :: IOPT, N1, N2, LDX, LDY, LWORK, IERR INTEGER, DIMENSION(:) :: IFAC REAL :: SCALE REAL, DIMENSION(:) :: TRIGS, WORK
SUBROUTINE FFT2_64( IOPT, [N1], [N2], [SCALE], X, [LDX], Y, [LDY], * TRIGS, IFAC, WORK, [LWORK], IERR) COMPLEX, DIMENSION(:,:) :: X, Y INTEGER(8) :: IOPT, N1, N2, LDX, LDY, LWORK, IERR INTEGER(8), DIMENSION(:) :: IFAC REAL :: SCALE REAL, DIMENSION(:) :: TRIGS, WORK
#include <sunperf.h>
void cfftc2(int iopt, int n1, int n2, float scale, complex *x, int ldx, complex *y, int ldy, float *trigs, int *ifac, float *work, int lwork, int *ierr);
void cfftc2_64(long iopt, long n1, long n2, float scale, complex *x, long ldx, complex *y, long ldy, float *trigs, long *ifac, float *work, long lwork, long *ierr);
cfftc2 initializes the trigonometric weight and factor tables or computes the two-dimensional Fast Fourier Transform (forward or inverse) of a two-dimensional complex array. In computing the two-dimensional FFT, one-dimensional FFTs are computed along the columns of the input array. One-dimensional FFTs are then computed along the rows of the intermediate results. .Ve
N2-1 N1-1
Y(k1,k2)
= scale * SUM SUM W2*W1*X(j1,j2)
j2=0 j1=0 .Ve
where
k1 ranges from 0 to N1-1 and k2 ranges from 0 to N2-1
i = sqrt(-1)
isign = 1 for inverse transform or -1 for forward transform
W1 = exp(isign*i*j1*k1*2*pi/N1)
W2 = exp(isign*i*j2*k2*2*pi/N2)
IOPT = 0 computes the trigonometric weight table and factor table
IOPT = -1 computes forward FFT
IOPT = +1 computes inverse FFT
0 = normal return
-1 = IOPT is not 0, 1 or -1
-2 = N1 < 0
-3 = N2 < 0
-4 = (LDX < N1)
-5 = (LDY < N1) or (LDY not equal LDX when X and Y are same array)
-6 = (LWORK not equal 0) and (LWORK < 2*MAX(N1,N2)*NCPUS)
-7 = memory allocation failed
fft
On exit, entire output array Y(1:LDY, 1:N2) is overwritten.