GNU Octave  3.8.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
cfftf.f
Go to the documentation of this file.
1  subroutine cfftf (n,c,wsave)
2  dimension c(*) ,wsave(*)
3  if (n .eq. 1) return
4  iw1 = n+n+1
5  iw2 = iw1+n+n
6  call cfftf1(n,c,wsave,wsave(iw1),wsave(iw2))
7  return
8  end