view libcruft/fftpack/cffti.f @ 4777:279c255672ee

Added tag ss-2-1-54 for changeset adf8d68d7143
author jwe@segfault.lan
date Fri, 01 Feb 2008 20:55:43 -0500
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