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/psComplexArrays.h

    r149 r153  
    66/* Complex number arrays */
    77
    8 /* Multiplication of two complex number arrays */
    9 /* Purposely leave these NOT restrict-ed, so that the multiplication may be done in-place */
     8/** Multiplication of two complex number arrays.  Purposely leave these NOT restrict-ed, so that the
     9 * multiplication may be done in-place
     10 */
    1011psComplexArray *
    11 psComplexMultiply(psComplexArray *out, // Output array to be returned; may be NULL
    12                   const psComplexArray *complex1, // Input complex array 1
    13                   const psComplexArray *complex2 // Input complex array 2
     12psComplexMultiply(psComplexArray *out, //!< Output array to be returned; may be NULL
     13                  const psComplexArray *complex1, //!< Input complex array 1
     14                  const psComplexArray *complex2 //!< Input complex array 2
    1415                  );
    1516
    16 /* Division of two complex number arrays */
    17 /* Purposely leave these NOT restrict-ed, so that the division may be done in-place */
     17/** Division of two complex number arrays.  Purposely leave these NOT restrict-ed, so that the division
     18 * may be done in-place
     19 */
    1820psComplexArray *
    19 psComplexDivide(psComplexArray *out,    // Output array to be returned; may be NULL
    20                 const psComplexArray *complex1, // Input complex array 1
    21                 const psComplexArray *complex2 // Input complex array 2
     21psComplexDivide(psComplexArray *out,    //!< Output array to be returned; may be NULL
     22                const psComplexArray *complex1, //!< Input complex array 1
     23                const psComplexArray *complex2 //!< Input complex array 2
    2224                );
    2325
    24 /* Complex conjugates for a complex number array */
    25 /* Purposely leave these NOT restrict-ed, so that the operation may be done in-place */
     26/** Complex conjugates for a complex number array. Purposely leave these NOT restrict-ed, so that the
     27 * operation may be done in-place
     28 */
    2629psComplexArray *
    27 psComplexConjugate(psComplexArray *out, // Output array to be returned; may be NULL
    28                    const psComplexArray *myComplexNumbers // Input complex number array
     30psComplexConjugate(psComplexArray *out, //!< Output array to be returned; may be NULL
     31                   const psComplexArray *myComplexNumbers //!< Input complex number array
    2932                   );
    3033
    31 /* Moduli for a complex number array */
     34/** Moduli for a complex number array */
    3235psFloatArray *
    33 psComplexModulus(const psComplex *restrict myComplexNumbers // Input complex number array
     36psComplexModulus(const psComplex *restrict myComplexNumbers //!< Input complex number array
    3437                 );
    3538
Note: See TracChangeset for help on using the changeset viewer.