fftdoc.f 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. *DECK FFTDOC
  2. SUBROUTINE FFTDOC
  3. C***BEGIN PROLOGUE FFTDOC
  4. C***PURPOSE Documentation for FFTPACK, a collection of Fast Fourier
  5. C Transform routines.
  6. C***LIBRARY SLATEC
  7. C***CATEGORY J1, Z
  8. C***TYPE ALL (FFTDOC-A)
  9. C***KEYWORDS DOCUMENTATION, FAST FOURIER TRANSFORM, FFT
  10. C***AUTHOR Swarztrauber, P. N., (NCAR)
  11. C***DESCRIPTION
  12. C
  13. C * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  14. C Version 3 June 1979
  15. C
  16. C A Package of Fortran Subprograms for The Fast Fourier
  17. C Transform of Periodic and Other Symmetric Sequences
  18. C By
  19. C Paul N Swarztrauber
  20. C
  21. C National Center For Atmospheric Research, Boulder, Colorado 80307
  22. C which is sponsored by the National Science Foundation
  23. C
  24. C * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  25. C
  26. C This package consists of programs which perform Fast Fourier
  27. C Transforms for both complex and real periodic sequences and
  28. C certain other symmetric sequences that are listed below.
  29. C
  30. C 1. RFFTI Initialize RFFTF and RFFTB
  31. C 2. RFFTF Forward transform of a real periodic sequence
  32. C 3. RFFTB Backward transform of a real coefficient array
  33. C
  34. C 4. EZFFTI Initialize EZFFTF and EZFFTB
  35. C 5. EZFFTF A simplified real periodic forward transform
  36. C 6. EZFFTB A simplified real periodic backward transform
  37. C
  38. C 7. SINTI Initialize SINT
  39. C 8. SINT Sine transform of a real odd sequence
  40. C
  41. C 9. COSTI Initialize COST
  42. C 10. COST Cosine transform of a real even sequence
  43. C
  44. C 11. SINQI Initialize SINQF and SINQB
  45. C 12. SINQF Forward sine transform with odd wave numbers
  46. C 13. SINQB Unnormalized inverse of SINQF
  47. C
  48. C 14. COSQI Initialize COSQF and COSQB
  49. C 15. COSQF Forward cosine transform with odd wave numbers
  50. C 16. COSQB Unnormalized inverse of COSQF
  51. C
  52. C 17. CFFTI Initialize CFFTF and CFFTB
  53. C 18. CFFTF Forward transform of a complex periodic sequence
  54. C 19. CFFTB Unnormalized inverse of CFFTF
  55. C
  56. C***REFERENCES (NONE)
  57. C***ROUTINES CALLED (NONE)
  58. C***REVISION HISTORY (YYMMDD)
  59. C 780201 DATE WRITTEN
  60. C 861211 REVISION DATE from Version 3.2
  61. C 891214 Prologue converted to Version 4.0 format. (BAB)
  62. C 900723 PURPOSE section revised. (WRB)
  63. C***END PROLOGUE FFTDOC
  64. C***FIRST EXECUTABLE STATEMENT FFTDOC
  65. RETURN
  66. END