updated top-level README and version_decl for V4.4.2 (#1795)
[WRF.git] / external / fftpack / fftpack5 / cfft1i.F
blob68020b72ba10df1d210697e0d400c13191b43035
1 subroutine cfft1i ( n, wsave, lensav, ier )
3 !*****************************************************************************80
5 !! CFFT1I: initialization for CFFT1B and CFFT1F.
7 !  Discussion:
9 !    CFFT1I initializes array WSAVE for use in its companion routines
10 !    CFFT1B and CFFT1F.  Routine CFFT1I must be called before the first
11 !    call to CFFT1B or CFFT1F, and after whenever the value of integer
12 !    N changes.
15 !    Copyright (C) 1995-2004, Scientific Computing Division,
16 !    University Corporation for Atmospheric Research
18 !  Modified:
20 !    22 March 2005
22 !  Author:
24 !    Paul Swarztrauber
25 !    Richard Valent
27 !  Reference:
29 !    Paul Swarztrauber,
30 !    Vectorizing the Fast Fourier Transforms,
31 !    in Parallel Computations,
32 !    edited by G. Rodrigue,
33 !    Academic Press, 1982.
35 !    Paul Swarztrauber,
36 !    Fast Fourier Transform Algorithms for Vector Computers,
37 !    Parallel Computing, pages 45-63, 1984.
39 !  Parameters:
41 !    Input, integer ( kind = 4 ) N, the length of the sequence to be
42 !    transformed.  The transform is most efficient when N is a product
43 !    of small primes.
45 !    Input, integer ( kind = 4 ) LENSAV, the dimension of the WSAVE array.
46 !    LENSAV must be at least 2*N + INT(LOG(REAL(N))) + 4.
48 !    Output, real ( kind = 4 ) WSAVE(LENSAV), containing the prime factors
49 !    of N and  also containing certain trigonometric values which will be used
50 !    in routines CFFT1B or CFFT1F.
52 !    Output, integer ( kind = 4 ) IER, error flag.
53 !    0, successful exit;
54 !    2, input parameter LENSAV not big enough.
56   implicit none
58   integer ( kind = 4 ) lensav
60   integer ( kind = 4 ) ier
61   integer ( kind = 4 ) iw1
62   integer ( kind = 4 ) n
63   real ( kind = 4 ) wsave(lensav)
65   ier = 0
67   if ( lensav < 2 * n + int ( log ( real ( n, kind = 4 ) ) ) + 4 ) then
68     ier = 2
69     call xerfft ( 'CFFT1I', 3 )
70     return
71   end if
73   if ( n == 1 ) then
74     return
75   end if
77   iw1 = n + n + 1
79   call r4_mcfti1 ( n, wsave, wsave(iw1), wsave(iw1+1) )
81   return
82 end