view libcruft/fftpack/cfftf.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 cfftf (n,c,wsave)
      implicit double precision (a-h,o-z)
      dimension       c(*)       ,wsave(*)
      if (n .eq. 1) return
      iw1 = n+n+1
      iw2 = iw1+n+n
      call cfftf1 (n,c,wsave,wsave(iw1),wsave(iw2))
      return
      end