ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
rft2.f90
Go to the documentation of this file.
1 subroutine rft2(data, nr, kr)
2 !
3 ! ******************************************************************
4 ! * real fourier transform. *
5 ! * input: nr real coefficients *
6 ! * data(1),data(1+kr),....,data(1+(nr-1)*kr). *
7 ! * output: nr/2+1 complex coefficients *
8 ! * (data(1), data(1+kr)) *
9 ! * (data(1+2*kr), data(1+3*kr)) *
10 ! * ............................. *
11 ! * (data(1+nr*kr),data(1+(nr+1)*kr). *
12 ! * the calling program should have data dimensioned with at least *
13 ! * (nr+1)*kr+1 elements. (i.e., nr+2 if increment kr=1). *
14 ! * lasl routine may 75, calling fft2 and rtran2. *
15 ! ******************************************************************
16 
17 
18  use itm_types
19 
20  implicit none
21 
22  integer(itm_i4), intent(in) :: nr, kr
23  real(r8), dimension((nr + 1) * kr + 1), intent(inout) :: data
24 
25  call fft2(data(1), data(kr + 1), nr / 2, -(kr + kr))
26  call rtran2(data, nr, kr, 1)
27 
28  return
29 end subroutine rft2
subroutine rft2(data, nr, kr)
Definition: rft2.f90:1
subroutine rtran2(data, nr, kr, ktran)
Definition: rtran2.f90:1
subroutine fft2(datar, datai, n, inc)
Definition: fft2.f90:1