updated top-level README and version_decl for V4.4.2 (#1795)
[WRF.git] / external / fftpack / fftpack5 / r1f2kf.F
blob0ceec196384fa30702d8d8c6d34acad893947394
1 subroutine r1f2kf ( ido, l1, cc, in1, ch, in2, wa1 )
3 !*****************************************************************************80
5 !! R1F2KF is an FFTPACK5 auxiliary routine.
8 !    Copyright (C) 1995-2004, Scientific Computing Division,
9 !    University Corporation for Atmospheric Research
11 !  Modified:
13 !    27 March 2009
15 !  Author:
17 !    Paul Swarztrauber
18 !    Richard Valent
20 !  Reference:
22 !    Paul Swarztrauber,
23 !    Vectorizing the Fast Fourier Transforms,
24 !    in Parallel Computations,
25 !    edited by G. Rodrigue,
26 !    Academic Press, 1982.
28 !    Paul Swarztrauber,
29 !    Fast Fourier Transform Algorithms for Vector Computers,
30 !    Parallel Computing, pages 45-63, 1984.
32 !  Parameters:
34   implicit none
36   integer ( kind = 4 ) ido
37   integer ( kind = 4 ) in1
38   integer ( kind = 4 ) in2
39   integer ( kind = 4 ) l1
41   real ( kind = 4 ) ch(in2,ido,2,l1)
42   real ( kind = 4 ) cc(in1,ido,l1,2)
43   integer ( kind = 4 ) i
44   integer ( kind = 4 ) ic
45   integer ( kind = 4 ) idp2
46   integer ( kind = 4 ) k
47   real ( kind = 4 ) wa1(ido)
49   do k = 1, l1
50     ch(1,1,1,k)   = cc(1,1,k,1) + cc(1,1,k,2)
51     ch(1,ido,2,k) = cc(1,1,k,1) - cc(1,1,k,2)
52   end do
54   if ( ido < 2 ) then
55     return
56   end if
58   if ( 2 < ido ) then
60     idp2 = ido + 2
62     do k = 1, l1
63       do i = 3, ido, 2
64         ic = idp2 - i
65         ch(1,i,1,k) = cc(1,i,k,1)   + ( wa1(i-2) * cc(1,i,k,2) &
66                                       - wa1(i-1) * cc(1,i-1,k,2) )
67         ch(1,ic,2,k) = -cc(1,i,k,1) + ( wa1(i-2) * cc(1,i,k,2) &
68                                       - wa1(i-1) * cc(1,i-1,k,2) )
69         ch(1,i-1,1,k) = cc(1,i-1,k,1)  + ( wa1(i-2) * cc(1,i-1,k,2) &
70                                          + wa1(i-1) * cc(1,i,k,2))
71         ch(1,ic-1,2,k) = cc(1,i-1,k,1) - ( wa1(i-2) * cc(1,i-1,k,2) &
72                                          + wa1(i-1) * cc(1,i,k,2))
73       end do
74     end do
76     if ( mod ( ido, 2 ) == 1 ) then
77       return
78     end if
80   end if
82   do k = 1, l1
83     ch(1,1,2,k) = -cc(1,ido,k,2)
84     ch(1,ido,1,k) = cc(1,ido,k,1)
85   end do
87   return
88 end