Merge remote-tracking branch 'origin/release-v4.6.1'
[WRF.git] / external / fftpack / fftpack5 / cfftmi.F
blobb8bd174a5baa6c5b605ea1c1b1596973ae96776a
1 subroutine cfftmi ( n, wsave, lensav, ier )
3 !*****************************************************************************80
5 !! CFFTMI: initialization for CFFTMB and CFFTMF.
7 !  Discussion:
9 !    CFFTMI initializes array WSAVE for use in its companion routines
10 !    CFFTMB and CFFTMF.  CFFTMI must be called before the first call
11 !    to CFFTMB or CFFTMF, and after whenever the value of integer N changes.
14 !    Copyright (C) 1995-2004, Scientific Computing Division,
15 !    University Corporation for Atmospheric Research
17 !  Modified:
19 !    24 March 2005
21 !  Author:
23 !    Paul Swarztrauber
24 !    Richard Valent
26 !  Reference:
28 !    Paul Swarztrauber,
29 !    Vectorizing the Fast Fourier Transforms,
30 !    in Parallel Computations,
31 !    edited by G. Rodrigue,
32 !    Academic Press, 1982.
34 !    Paul Swarztrauber,
35 !    Fast Fourier Transform Algorithms for Vector Computers,
36 !    Parallel Computing, pages 45-63, 1984.
38 !  Parameters:
40 !    Input, integer ( kind = 4 ) N, the length of each sequence to be
41 !    transformed.  The transform is most efficient when N is a product of
42 !    small primes.
44 !    Input, integer ( kind = 4 ) LENSAV, the dimension of the WSAVE array.
45 !    LENSAV must be at least 2*N + INT(LOG(REAL(N))) + 4.
47 !    Output, real ( kind = 4 ) WSAVE(LENSAV), containing the prime factors
48 !    of N and also containing certain trigonometric values which will be used in
49 !    routines CFFTMB or CFFTMF.
51 !    Output, integer ( kind = 4 ) IER, error flag.
52 !    0, successful exit;
53 !    2, input parameter LENSAV not big enough.
55   implicit none
57   integer ( kind = 4 ) lensav
59   integer ( kind = 4 ) ier
60   integer ( kind = 4 ) iw1
61   integer ( kind = 4 ) n
62   real ( kind = 4 ) wsave(lensav)
64   ier = 0
66   if ( lensav < 2 * n + int ( log ( real ( n, kind = 4 ) ) ) + 4 ) then
67     ier = 2
68     call xerfft ( 'cfftmi ', 3 )
69     return
70   end if
72   if ( n == 1 ) then
73     return
74   end if
76   iw1 = n + n + 1
77   call r4_mcfti1 ( n, wsave, wsave(iw1), wsave(iw1+1) )
79   return
80 end