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

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

Contents


scfftm1dui,dzfftm1dui(3F)			     scfftm1dui,dzfftm1dui(3F)


NAME    [Toc]    [Back]

     scfftm1dui, dzfftm1dui - initialize the coefficient array for real-tocomplex
 Multiple 1D FFT modules.

SYNOPSYS    [Toc]    [Back]

     FORTRAN SPECIFICATION
     subroutine	SCFFTM1DUI( n, coeff )
     integer		      n
     real	    coeff(n+15)

     subroutine	DZFFTM1DUI( n, coeff )
     integer		      n
     real*8		 coeff(n+15)

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

     double *dzfftm1dui( int n,	double *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	scfftm1d or dzfftm1d only read the coeff array,	it may
     be	reused as long as necessary once it has	been initialized.

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

     SCFFTM1DUI	should be used to initialize the coefficient array before any
     call to SCFFTM1DU
     DZFFTM1DUI	should be used to initialize the coefficient array before any
     call to DZFFTM1DU

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 real-to-complex FFTs of size 200.

     Fortran :
	  real coeff(200+15)
	  call scfftm1dui( 200,	coeff)

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



									Page 1






scfftm1dui,dzfftm1dui(3F)			     scfftm1dui,dzfftm1dui(3F)



	 coeff = scfftm1dui( 200, NULL);

SEE ALSO    [Toc]    [Back]

      
      
	  fft, scfftm1du, dzfftm1du


									PPPPaaaaggggeeee 2222
[ Back ]
 Similar pages
Name OS Title
cfftm1di IRIX initialize the coefficient array for complex-tocomplex Multiple 1D FFT modules.
fft3dui IRIX initialize the coefficient array for real-tocomplex 3D FFT modules.
fft1dui IRIX initialize the coefficient array for real-tocomplex 1D FFT modules.
fft2dui IRIX initialize the coefficient array for real-tocomplex 2D FFT modules.
fft2di IRIX initialize the coefficient array for complex-tocomplex 2D 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.
zlaset IRIX initialize a 2-D array A to BETA on the diagonal and ALPHA on the offdiagonals
claset IRIX initialize a 2-D array A to BETA on the diagonal and ALPHA on the offdiagonals
sscalm1d IRIX scales Multiple 1D real sequences.
Copyright © 2004-2005 DeniX Solutions SRL
newsletter delivery service