IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 9, 2004, 12:28:16 PM (22 years ago)
Author:
Paul Price
Message:

Doxygen-ated the source files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/pslib/include/psFFT.h

    r149 r153  
    66/* Fourier Transform functions */
    77
    8 /* Return Fourier Transform of an array */
     8/** Return Fourier Transform of an array */
    99psComplexArray *
    10 psRealFFT(psComplexArray *restrict out, // Output array to be returned; may be NULL
    11           const psFloatArray *restrict myArray // Input array
     10psRealFFT(psComplexArray *restrict out, //!< Output array to be returned; may be NULL
     11          const psFloatArray *restrict myArray //!< Input array
    1212          );
    1313
    14 /* Return [inverse?] Fourier Transform of a complex array */
    15 /* May NOT be done in-place (restrict-ed) */
     14/** Return [inverse?] Fourier Transform of a complex array.  May NOT be done in-place (restrict-ed) */
    1615psComplexArray *
    17 psComplexFFT(psComplexArray *restrict out, // Output array to be returned; may be NULL
    18              const psComplexArray *restrict myArray, // Input array
    19              int sign                   // +1 or -1 to indicate direction of FT
     16psComplexFFT(psComplexArray *restrict out, //!< Output array to be returned; may be NULL
     17             const psComplexArray *restrict myArray, //!< Input array
     18             int sign                   //!< +1 or -1 to indicate direction of FT
    2019             );
    2120
    22 /* Return Power spectrum of a array */
     21/** Return Power spectrum of a array */
    2322psFloatArray *
    24 psPowerSpec(psFloatArray *restrict out, // Output array to be returned
    25             const psFloatArray *restrict myArray // Input array
     23psPowerSpec(psFloatArray *restrict out, //!< Output array to be returned
     24            const psFloatArray *restrict myArray //!< Input array
    2625            );
    2726
Note: See TracChangeset for help on using the changeset viewer.