view libcruft/fftpack/zffti.f @ 8710:739141cde75a ss-3-1-52

fix typo in Array-f.cc
author Jaroslav Hajek <highegg@gmail.com>
date Mon, 09 Feb 2009 21:51:31 +0100
parents 82be108cc558
children
line wrap: on
line source

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