Mercurial > hg > octave-max
view libcruft/fftpack/cfftf.f @ 11243:dc5d1280ef14
don't compile src/X-opts.cc files separately
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Fri, 12 Nov 2010 20:33:19 -0500 |
parents | 82be108cc558 |
children |
line wrap: on
line source
subroutine cfftf (n,c,wsave) 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