*nix Documentation Project
·  Home
 +   man pages
·  Linux HOWTOs
·  FreeBSD Tips
·  *niX Forums

  man pages->IRIX man pages -> complib/cfftm1di (3)              
Title
Content
Arch
Section
 

Contents


cfftm1di,zfftm1di(3F)					 cfftm1di,zfftm1di(3F)


NAME    [Toc]    [Back]

     cfftm1di, zfftm1di	- initialize the coefficient array for complex-tocomplex
 Multiple 1D FFT modules.

SYNOPSYS    [Toc]    [Back]

     FORTRAN SPECIFICATION
     subroutine	CFFTM1DI( n, coeff )
     integer		      n
     complex		 coeff(n+15)

     subroutine	ZFFTM1DI( n, coeff )
     integer		      n
     double complex	 coeff(n+15)

     C SPECIFICATION
     #include <fft.h>
     complex *cfftm1di(	int n, complex *coeff);

     zomplex *zfftm1di(	int n, zomplex *coeff);

DESCRIPTION    [Toc]    [Back]

     Initialize	the coefficient	array which is used in the Multiple 1D FFT
     modules.  This array contains the different twiddle factors and the
     factorization of N	into prime numbers.
     As	the FFT	modules	cfftm1d	or zfftm1d only	read the coeff array, it may
     be	reused as long as necessary once it has	been initialized.

     In	C, if ptr is NULL, cfftm1di or zfftm1di	returns	a pointer to an
     allocated buffer.

     CFFTM1DI should be	used to	initialize the coefficient array before	any
     call to CFFTM1D
     ZFFTM1DI should be	used to	initialize the coefficient array before	any
     call to ZFFTM1D

PARAMETERS    [Toc]    [Back]

     N - Integer. Specifies the	length of the sequence to be transformed.
     Unchanged on exit.

     COEFF - Array (C or Fortran) or NULL pointer(C).

Example	of Calling Sequence
     Initializing a coefficient	array for complex-to-complex FFTs of size 200.

     Fortran :
	  complex coeff(200+15)
	  call cfftm1di( 200, coeff)

     C :
	  #include <fft.h>
	  complex *coeff;



									Page 1






cfftm1di,zfftm1di(3F)					 cfftm1di,zfftm1di(3F)



	 coeff = cfftm1di( 200,	NULL);

SEE ALSO    [Toc]    [Back]

      
      
	  fft, cfftm1d,	zfftm1d


									PPPPaaaaggggeeee 2222
[ Back ]
 Similar pages
Name OS Title
scfftm1dui IRIX initialize the coefficient array for real-tocomplex Multiple 1D FFT modules.
fft1di IRIX initialize the coefficient array for Complex-toComplex 1D FFT modules.
fft3di IRIX initialize the coefficient array for complex-tocomplex 3D FFT modules.
fft2di IRIX initialize the coefficient array for complex-tocomplex 2D FFT modules.
fft2dui IRIX initialize the coefficient array for real-tocomplex 2D FFT modules.
fft1dui IRIX initialize the coefficient array for real-tocomplex 1D FFT modules.
fft3dui IRIX initialize the coefficient array for real-tocomplex 3D FFT modules.
cfftm1d IRIX Multiple 1D, complex-to-complex, Fast Fourier Transforms.
claset IRIX initialize a 2-D array A to BETA on the diagonal and ALPHA on the offdiagonals
zlaset IRIX initialize a 2-D array A to BETA on the diagonal and ALPHA on the offdiagonals
Copyright © 2004-2005 DeniX Solutions SRL
newsletter delivery service