view libcruft/fftpack/cfftf.f @ 7334:274d9642ac10 release-3-0-0

[project @ 2007-12-22 01:42:45 by jwe]
author jwe
date Sat, 22 Dec 2007 01:42:46 +0000
parents 30c606bec7a8
children d20a2f261306
line wrap: on
line source

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