view libcruft/fftpack/cfftf.f @ 4776:adf8d68d7143 ss-2-1-54

[project @ 2004-02-16 20:32:20 by jwe]
author jwe
date Mon, 16 Feb 2004 20:32:20 +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