view libcruft/fftpack/cffti.f @ 5967:d542d9197839 ss-2-9-8

[project @ 2006-08-24 21:24:53 by jwe]
author jwe
date Thu, 24 Aug 2006 21:27:41 +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