view libcruft/fftpack/cffti.f @ 7575:d20a2f261306

use * instead of 1 for assumed-size fortran arrays
author John W. Eaton <jwe@octave.org>
date Mon, 10 Mar 2008 13:30:01 -0400
parents 30c606bec7a8
children 82be108cc558
line wrap: on
line source

      subroutine cffti (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 cffti1 (n,wsave(iw1),wsave(iw2))
      return
      end