NAME

cfft2i - initialize the array WSAVE, which is used in both the forward and backward transforms.


SYNOPSIS

  SUBROUTINE CFFT2I( M, N, WORK)
  INTEGER M, N
  REAL WORK(*)
  SUBROUTINE CFFT2I_64( M, N, WORK)
  INTEGER*8 M, N
  REAL WORK(*)

F95 INTERFACE

  SUBROUTINE CFFT2I( M, N, WORK)
  INTEGER :: M, N
  REAL, DIMENSION(:) :: WORK
  SUBROUTINE CFFT2I_64( M, N, WORK)
  INTEGER(8) :: M, N
  REAL, DIMENSION(:) :: WORK

C INTERFACE

#include <sunperf.h>

void cfft2i(int m, int n, float *work);

void cfft2i_64(long m, long n, float *work);


ARGUMENTS