home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / drdobbs / 1991 / 05 / bittman / ddj_mp87.fnc < prev    next >
Text File  |  1991-02-10  |  517b  |  27 lines

  1. ;***********************************************
  2. ;    FILE MPFFT.FNC
  3. ;***********************************************
  4. ;
  5. ;             FFT Funcs For MathPak87
  6. ;
  7. ;***********************************************
  8.  
  9. Author = "From MathPak 87 Library"
  10. Comments = "Routines performed in-place"
  11. GroupName = "MPFFTs"
  12.  
  13. BlockSize = Power2
  14. BlockSize Min = 8
  15. BlockSize max = 8192
  16.  
  17. Output 1 required
  18. Output 1 data = double
  19. Output 1 Min = BlockSize
  20. Output 1 units = freq
  21.  
  22. FuncNames = {
  23. "rvfft"
  24. "irvfft"
  25. }
  26. 
  27.