view libcruft/fftpack/cfftf.f @ 5103:e2ed74b9bfa0 after-gnuplot-split

[project @ 2004-12-28 02:43:01 by jwe]
author jwe
date Tue, 28 Dec 2004 02:43:01 +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