updated top-level README and version_decl for V4.4.2 (#1795)
[WRF.git] / external / fftpack / fftpack5 / d1f2kf.F
blob670eaf16fc6463462706633de8175c4c6c6ba642
1 subroutine d1f2kf ( ido, l1, cc, in1, ch, in2, wa1 )
3 !*****************************************************************************80
5 !! D1F2KF is an FFTPACK5 auxiliary routine.
9 !  Modified:
11 !    07 February 2006
13 !  Author:
15 !    Original real single precision by Paul Swarztrauber, Richard Valent.
16 !    Real double precision version by John Burkardt.
18 !  Reference:
20 !    Paul Swarztrauber,
21 !    Vectorizing the Fast Fourier Transforms,
22 !    in Parallel Computations,
23 !    edited by G. Rodrigue,
24 !    Academic Press, 1982.
26 !    Paul Swarztrauber,
27 !    Fast Fourier Transform Algorithms for Vector Computers,
28 !    Parallel Computing, pages 45-63, 1984.
30 !  Parameters:
32   implicit none
34   integer ( kind = 4 ) ido
35   integer ( kind = 4 ) in1
36   integer ( kind = 4 ) in2
37   integer ( kind = 4 ) l1
39   real ( kind = 8 ) ch(in2,ido,2,l1)
40   real ( kind = 8 ) cc(in1,ido,l1,2)
41   integer ( kind = 4 ) i
42   integer ( kind = 4 ) ic
43   integer ( kind = 4 ) idp2
44   integer ( kind = 4 ) k
45   real ( kind = 8 ) wa1(ido)
47   do k = 1, l1
48     ch(1,1,1,k)   = cc(1,1,k,1) + cc(1,1,k,2)
49     ch(1,ido,2,k) = cc(1,1,k,1) - cc(1,1,k,2)
50   end do
52   if ( ido < 2 ) then
53     return
54   end if
56   if ( 2 < ido ) then
58     idp2 = ido + 2
60     do k = 1, l1
61       do i = 3, ido, 2
62         ic = idp2 - i
63         ch(1,i,1,k) = cc(1,i,k,1)   + ( wa1(i-2) * cc(1,i,k,2) &
64                                       - wa1(i-1) * cc(1,i-1,k,2) )
65         ch(1,ic,2,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,i-1,1,k) = cc(1,i-1,k,1)  + ( wa1(i-2) * cc(1,i-1,k,2) &
68                                          + wa1(i-1) * cc(1,i,k,2))
69         ch(1,ic-1,2,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       end do
72     end do
74     if ( mod ( ido, 2 ) == 1 ) then
75       return
76     end if
78   end if
80   do k = 1, l1
81     ch(1,1,2,k) = -cc(1,ido,k,2)
82     ch(1,ido,1,k) = cc(1,ido,k,1)
83   end do
85   return
86 end