IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 9, 2004, 1:34:58 PM (22 years ago)
Author:
desonia
Message:

cleanup of some indent-induced madness.

File:
1 edited

Legend:

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

    r1426 r1440  
    2222 *  @author Ross Harman, MHPCC
    2323 *
    24  *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
    25  *  @date $Date: 2004-08-09 22:44:25 $
     24 *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
     25 *  @date $Date: 2004-08-09 23:34:57 $
    2626 *
    2727 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    4141 *  the same. GSL indexes the top row as the zero row, not the bottom. 
    4242 *
    43  *  @return  psImage*: Pointer to LU decomposed psImage.
     43 *  @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
     
    5555 *  the top row as the zero row, not the bottom. 
    5656 *
    57  *  @return  psVector*: Pointer to psVector solution of matrix equation.
     57 *  @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                         );
     
    7171 *  the same. GSL indexes the top row as the zero row, not the bottom. 
    7272 *
    73  *  @return  psImage*: Pointer to inverted psImage.
     73 *  @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
     75psImage* psMatrixInvert(psImage* outImage,     ///< Image to return, or NULL for in-place substitution.
     76                        const psImage* inImage,        ///< Image to be inverted
    7777                        float *restrict det     ///< Determinant to return, or NULL
    7878                       );
     
    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
     
    9696 *  zero row, not the bottom. 
    9797 *
    98  *  @return  psImage*: Pointer to resulting psImage.
     98 *  @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
     
    110110 *  row, not the bottom. 
    111111 *
    112  *  @return  psImage*: Pointer to transposed psImage.
     112 *  @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
     
    122122 *  only with the psF64 data type. GSL indexes the top row as the zero row, not the bottom. 
    123123 *
    124  *  @return  psImage*: Pointer to matrix of Eigenvectors.
     124 *  @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
     
    135135 *  input matrix must be 1. This function operates only  with the psF64 data type.
    136136 *
    137  *  @return  psVector*: Pointer to psVector.
     137 *  @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
     
    148148 *  automatically be created. This function operates only with the psF64 data type. 
    149149 *
    150  *  @return  psVector*: Pointer to psIamge.
     150 *  @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.