view libcruft/fftpack/cffti.f @ 11738:5dc5de967ab0 release-3-0-x

use * instead of 1 for assumed-size fortran arrays
author John W. Eaton <jwe@octave.org>
date Fri, 04 Apr 2008 14:27:06 -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