IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 9, 2004, 12:44:25 PM (22 years ago)
Author:
desonia
Message:

fixed some stupid indent-induced formating problems and added doxygen
comments.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/math/psMatrix.h

    r1407 r1426  
    2222 *  @author Ross Harman, MHPCC
    2323 *
    24  *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
    25  *  @date $Date: 2004-08-07 00:06:06 $
     24 *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
     25 *  @date $Date: 2004-08-09 22:44:25 $
    2626 *
    2727 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    4343 *  @return  psImage*: Pointer to LU decomposed psImage.
    4444 */
    45 psImage *psMatrixLUD(psImage * outImage,        // /< Image to return, or NULL.
    46                      psVector * outPerm,        // /< Output permutation vector used by psMatrixLUSolve.
    47                      psImage * inImage  // /< Image to decompose.
     45psImage *psMatrixLUD(psImage * outImage,        ///< Image to return, or NULL.
     46                     psVector * outPerm,        ///< Output permutation vector used by psMatrixLUSolve.
     47                     psImage * inImage  ///< Image to decompose.
    4848                    );
    4949
     
    5757 *  @return  psVector*: Pointer to psVector solution of matrix equation.
    5858 */
    59 psVector *psMatrixLUSolve(psVector * outVector, // /< Vector to return, or NULL.
    60                           const psImage * luImage,      // /< LU-decomposed matrix.
    61                           const psVector * inVector,    // /< Vector right-hand-side of equation.
    62                           const psVector * inPerm       // /< Permutation vector resulting from psMatrixLUD
     59psVector *psMatrixLUSolve(psVector * outVector, ///< Vector to return, or NULL.
     60                          const psImage * luImage,      ///< LU-decomposed matrix.
     61                          const psVector * inVector,    ///< Vector right-hand-side of equation.
     62                          const psVector * inPerm       ///< Permutation vector resulting from psMatrixLUD
    6363                          // function.
    6464                         );
     
    7373 *  @return  psImage*: Pointer to inverted psImage.
    7474 */
    75 psImage *psMatrixInvert(psImage * outImage,     // /< Image to return, or NULL for in-place substitution.
    76                         const psImage * inImage,        // /< Image to be inverted
    77                         float *restrict det     // /< Determinant to return, or NULL
     75psImage *psMatrixInvert(psImage * outImage,     ///< Image to return, or NULL for in-place substitution.
     76                        const psImage * inImage,        ///< Image to be inverted
     77                        float *restrict det     ///< Determinant to return, or NULL
    7878                       );
    7979
     
    8686 *  @return  float: Determinant from psImage.
    8787 */
    88 float *psMatrixDeterminant(const psImage * restrict inMatrix    // /< Image used to calculate determinant.
     88float *psMatrixDeterminant(const psImage * restrict inMatrix    ///< Image used to calculate determinant.
    8989                          );
    9090
     
    9898 *  @return  psImage*: Pointer to resulting psImage.
    9999 */
    100 psImage *psMatrixMultiply(psImage * outImage,   // /< Matrix to return, or NULL.
    101                           psImage * inImage1,   // /< First input image.
    102                           psImage * inImage2    // /< Second input image.
     100psImage *psMatrixMultiply(psImage * outImage,   ///< Matrix to return, or NULL.
     101                          psImage * inImage1,   ///< First input image.
     102                          psImage * inImage2    ///< Second input image.
    103103                         );
    104104
     
    112112 *  @return  psImage*: Pointer to transposed psImage.
    113113 */
    114 psImage *psMatrixTranspose(psImage * outImage,  // /< Image to return, or NULL
    115                            const psImage * inImage      // /< Image to transpose
     114psImage *psMatrixTranspose(psImage * outImage,  ///< Image to return, or NULL
     115                           const psImage * inImage      ///< Image to transpose
    116116                          );
    117117
     
    124124 *  @return  psImage*: Pointer to matrix of Eigenvectors.
    125125 */
    126 psImage *psMatrixEigenvectors(psImage * outImage,       // /< Eigenvectors to return, or NULL.
    127                               psImage * inImage // /< Input image.
     126psImage *psMatrixEigenvectors(psImage * outImage,       ///< Eigenvectors to return, or NULL.
     127                              psImage * inImage ///< Input image.
    128128                             );
    129129
     
    137137 *  @return  psVector*: Pointer to psVector.
    138138 */
    139 psVector *psMatrixToVector(psVector * outVector,        // /< Vector to return, or NULL.
    140                            psImage * inImage    // /< Image to convert.
     139psVector *psMatrixToVector(psVector * outVector,        ///< Vector to return, or NULL.
     140                           psImage * inImage    ///< Image to convert.
    141141                          );
    142142
     
    150150 *  @return  psVector*: Pointer to psIamge.
    151151 */
    152 psImage *psVectorToMatrix(psImage * outImage,   // /< Matrix to return, or NULL.
    153                           psVector * inVector   // /< Vector to convert.
     152psImage *psVectorToMatrix(psImage * outImage,   ///< Matrix to return, or NULL.
     153                          psVector * inVector   ///< Vector to convert.
    154154                         );
    155155
Note: See TracChangeset for help on using the changeset viewer.