Changeset 153 for trunk/archive/pslib/include/psFFT.h
- Timestamp:
- Mar 9, 2004, 12:28:16 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/archive/pslib/include/psFFT.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/pslib/include/psFFT.h
r149 r153 6 6 /* Fourier Transform functions */ 7 7 8 /* Return Fourier Transform of an array */8 /** Return Fourier Transform of an array */ 9 9 psComplexArray * 10 psRealFFT(psComplexArray *restrict out, // Output array to be returned; may be NULL11 const psFloatArray *restrict myArray // Input array10 psRealFFT(psComplexArray *restrict out, //!< Output array to be returned; may be NULL 11 const psFloatArray *restrict myArray //!< Input array 12 12 ); 13 13 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) */ 16 15 psComplexArray * 17 psComplexFFT(psComplexArray *restrict out, // Output array to be returned; may be NULL18 const psComplexArray *restrict myArray, // Input array19 int sign // +1 or -1 to indicate direction of FT16 psComplexFFT(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 20 19 ); 21 20 22 /* Return Power spectrum of a array */21 /** Return Power spectrum of a array */ 23 22 psFloatArray * 24 psPowerSpec(psFloatArray *restrict out, // Output array to be returned25 const psFloatArray *restrict myArray // Input array23 psPowerSpec(psFloatArray *restrict out, //!< Output array to be returned 24 const psFloatArray *restrict myArray //!< Input array 26 25 ); 27 26
Note:
See TracChangeset
for help on using the changeset viewer.
