home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
octave-1.1.1p1-src.tgz
/
tar.out
/
fsf
/
octave
/
libcruft
/
fftpack
/
cffti.f
< prev
next >
Wrap
Text File
|
1996-09-28
|
238b
|
10 lines
subroutine cffti (n,wsave)
implicit double precision (a-h,o-z)
dimension wsave(1)
if (n .eq. 1) return
iw1 = n+n+1
iw2 = iw1+n+n
call cffti1 (n,wsave(iw1),wsave(iw2))
return
end