Mercurial > hg > octave-nkf
view libcruft/fftpack/cfftf.f @ 9078:e92591954ea2
Makeconf.in (do-script-install): Use $(INSTALL_DATA) instead of mv to install PKG_ADD file
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 02 Apr 2009 17:08:48 -0400 |
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