IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 31, 2004, 5:01:04 PM (22 years ago)
Author:
Paul Price
Message:

Standardised on /< as Doxygen comment for variable.

File:
1 edited

Legend:

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

    r340 r344  
    1717/** Invert matrix.  Not using restrict, to allow inversion to be done in-place */
    1818psImage *
    19 psMatrixInvert(psImage *out,            //!< Matrix to return, or NULL
    20                const psImage *myMatrix, //!< Matrix to be inverted
    21                float *restrict determinant //!< Determinant to return, or NULL
     19psMatrixInvert(psImage *out,            ///< Matrix to return, or NULL
     20               const psImage *myMatrix, ///< Matrix to be inverted
     21               float *restrict determinant ///< Determinant to return, or NULL
    2222    );
    2323
    2424/** Matrix determinant */
    2525float
    26 psMatrixDeterminant(const psImage *restrict myMatrix //!< Matrix to get determinant for
     26psMatrixDeterminant(const psImage *restrict myMatrix ///< Matrix to get determinant for
    2727                    );
    2828
    2929/** Matrix operation: addition, subtraction, multiplication */
    3030psImage *
    31 psMatrixOp(psImage *out,                //!< Matrix to return, or NULL
    32            const psImage *matrix1,      //!< Matrix 1
    33            const psImage *matrix2       //!< Matrix 2
     31psMatrixOp(psImage *out,                ///< Matrix to return, or NULL
     32           const psImage *matrix1,      ///< Matrix 1
     33           const psImage *matrix2       ///< Matrix 2
    3434    );
    3535
    3636/** Transpose Matrix */
    3737psImage *
    38 psMatrixTranspose(psImage *out,         //!< Matrix to return, or NULL
    39                   const psImage *myMatrix //!< Matrix to transpose
     38psMatrixTranspose(psImage *out,         ///< Matrix to return, or NULL
     39                  const psImage *myMatrix ///< Matrix to transpose
    4040                  );
    4141
     
    4646/** Convert matrix to vector.  Intended for a 1-d matrix. */
    4747psVector *
    48 psMatrixToVector(psVector *out,         //!< Vector to return, or NULL
    49                  psImage *myMatrix      //!< Matrix to convert
     48psMatrixToVector(psVector *out,         ///< Vector to return, or NULL
     49                 psImage *myMatrix      ///< Matrix to convert
    5050    );
    5151
    5252/** Convert vector to matrix. */
    5353psImage *
    54 psVectorToMatrix(psImage *out,          //!< Matrix to return, or NULL
    55                  psVector *myVector     //!< Vector to convert
     54psVectorToMatrix(psImage *out,          ///< Matrix to return, or NULL
     55                 psVector *myVector     ///< Vector to convert
    5656    );
    5757
Note: See TracChangeset for help on using the changeset viewer.