Mercurial > hg > octave-nkf
view libcruft/fftpack/cfftf.f @ 11842:0b9c56b6bf0e release-3-0-x
partially sync Matrix::expm and ComplexMatrix::expm with development repo
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Fri, 19 Sep 2008 11:29:51 +0200 |
parents | 5dc5de967ab0 |
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