CSFFT
Routine Documentation
CSFFT (MODE,N,X,COMM,INFO)
|
SUBROUTINE |
The value of MODE on input determines the operation performed by
CSFFT .
On input:
- MODE=0 : only initializations (specific to the value of
N) are performed; this is usually followed by calls to the same routine
with MODE=1.
- MODE=1 : a forward transform is performed. Initializations are
assumed to have been performed by a prior call to
CSFFT .
- MODE=2 : initializations and transform are performed.
|
On input: N is the length of the sequence in X
|
On input: X contains the Hermitian sequence of
length N to be transformed.
On output: X contains the transformed real sequence.
|
REAL COMM(3*N+100)
|
Input/Output |
COMM is a communication array. Some portions of the array are used to store
initializations for subsequent calls with the same sequence length N.
The remainder is used as temporary store.
|
On output: INFO is an error indicator. On successful exit, INFO
contains 0. If INFO = -i on exit, the i-th argument had an illegal
value.
|
Example:
CALL SCFFT(0,N,X,COMM,INFO)
CALL SCFFT(1,N,X,COMM,INFO)
DO 10 I = N/2+2, N
X(I) = -X(I)
10 CONTINUE
CALL CSFFT(1,N,X,COMM,INFO)