Merge remote-tracking branch 'origin/release-v4.6.1'
[WRF.git] / external / fftpack / fftpack5 / zfftmi.F
blob1382ad653f5f87c67fd33ed152f61482748ea95f
1 subroutine zfftmi ( n, wsave, lensav, ier )
3 !*****************************************************************************80
5 !! ZFFTMI: initialization for ZFFTMB and ZFFTMF.
7 !  Discussion:
9 !    ZFFTMI initializes array WSAVE for use in its companion routines
10 !    ZFFTMB and ZFFTMF.  ZFFTMI must be called before the first call
11 !    to ZFFTMB or ZFFTMF, and after whenever the value of integer N changes.
15 !  Modified:
17 !    26 Ausust 2009
19 !  Author:
21 !    Original complex single precision by Paul Swarztrauber, Richard Valent.
22 !    Complex double precision version by John Burkardt.
24 !  Reference:
26 !    Paul Swarztrauber,
27 !    Vectorizing the Fast Fourier Transforms,
28 !    in Parallel Computations,
29 !    edited by G. Rodrigue,
30 !    Academic Press, 1982.
32 !    Paul Swarztrauber,
33 !    Fast Fourier Transform Algorithms for Vector Computers,
34 !    Parallel Computing, pages 45-63, 1984.
36 !  Parameters:
38 !    Input, integer ( kind = 4 ) N, the length of each sequence to be
39 !    transformed.  The transform is most efficient when N is a product of
40 !    small primes.
42 !    Input, integer ( kind = 4 ) LENSAV, the dimension of the WSAVE array.
43 !    LENSAV must be at least 2*N + INT(LOG(REAL(N))) + 4.
45 !    Output, real ( kind = 8 ) WSAVE(LENSAV), containing the prime factors
46 !    of N and also containing certain trigonometric values which will be used in
47 !    routines ZFFTMB or ZFFTMF.
49 !    Output, integer ( kind = 4 ) IER, error flag.
50 !    0, successful exit;
51 !    2, input parameter LENSAV not big enough.
53   implicit none
55   integer ( kind = 4 ) lensav
57   integer ( kind = 4 ) ier
58   integer ( kind = 4 ) iw1
59   integer ( kind = 4 ) n
60   real ( kind = 8 ) wsave(lensav)
62   ier = 0
64   if ( lensav < 2 * n + int ( log ( real ( n, kind = 8 ) ) ) + 4 ) then
65     ier = 2
66     call xerfft ( 'cfftmi ', 3 )
67     return
68   end if
70   if ( n == 1 ) then
71     return
72   end if
74   iw1 = n + n + 1
75   call r8_mcfti1 ( n, wsave, wsave(iw1), wsave(iw1+1) )
77   return
78 end