view libcruft/fftpack/cffti.f @ 5540:cda6a105ae9a before-ov-branch

[project @ 2005-11-17 05:47:13 by jwe]
author jwe
date Thu, 17 Nov 2005 05:47:13 +0000
parents 30c606bec7a8
children d20a2f261306
line wrap: on
line source

      subroutine cffti (n,wsave)
      implicit double precision (a-h,o-z)
      dimension       wsave(1)
      if (n .eq. 1) return
      iw1 = n+n+1
      iw2 = iw1+n+n
      call cffti1 (n,wsave(iw1),wsave(iw2))
      return
      end