Index: trunk/psLib/src/math/psMatrix.h
===================================================================
--- trunk/psLib/src/math/psMatrix.h	(revision 1407)
+++ trunk/psLib/src/math/psMatrix.h	(revision 1426)
@@ -22,6 +22,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-07 00:06:06 $
+ *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-09 22:44:25 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -43,7 +43,7 @@
  *  @return  psImage*: Pointer to LU decomposed psImage.
  */
-psImage *psMatrixLUD(psImage * outImage,        // /< Image to return, or NULL.
-                     psVector * outPerm,        // /< Output permutation vector used by psMatrixLUSolve.
-                     psImage * inImage  // /< Image to decompose.
+psImage *psMatrixLUD(psImage * outImage,        ///< Image to return, or NULL.
+                     psVector * outPerm,        ///< Output permutation vector used by psMatrixLUSolve.
+                     psImage * inImage  ///< Image to decompose.
                     );
 
@@ -57,8 +57,8 @@
  *  @return  psVector*: Pointer to psVector solution of matrix equation.
  */
-psVector *psMatrixLUSolve(psVector * outVector, // /< Vector to return, or NULL.
-                          const psImage * luImage,      // /< LU-decomposed matrix.
-                          const psVector * inVector,    // /< Vector right-hand-side of equation.
-                          const psVector * inPerm       // /< Permutation vector resulting from psMatrixLUD
+psVector *psMatrixLUSolve(psVector * outVector, ///< Vector to return, or NULL.
+                          const psImage * luImage,      ///< LU-decomposed matrix.
+                          const psVector * inVector,    ///< Vector right-hand-side of equation.
+                          const psVector * inPerm       ///< Permutation vector resulting from psMatrixLUD
                           // function.
                          );
@@ -73,7 +73,7 @@
  *  @return  psImage*: Pointer to inverted psImage.
  */
-psImage *psMatrixInvert(psImage * outImage,     // /< Image to return, or NULL for in-place substitution.
-                        const psImage * inImage,        // /< Image to be inverted
-                        float *restrict det     // /< Determinant to return, or NULL
+psImage *psMatrixInvert(psImage * outImage,     ///< Image to return, or NULL for in-place substitution.
+                        const psImage * inImage,        ///< Image to be inverted
+                        float *restrict det     ///< Determinant to return, or NULL
                        );
 
@@ -86,5 +86,5 @@
  *  @return  float: Determinant from psImage.
  */
-float *psMatrixDeterminant(const psImage * restrict inMatrix    // /< Image used to calculate determinant.
+float *psMatrixDeterminant(const psImage * restrict inMatrix    ///< Image used to calculate determinant.
                           );
 
@@ -98,7 +98,7 @@
  *  @return  psImage*: Pointer to resulting psImage.
  */
-psImage *psMatrixMultiply(psImage * outImage,   // /< Matrix to return, or NULL.
-                          psImage * inImage1,   // /< First input image.
-                          psImage * inImage2    // /< Second input image.
+psImage *psMatrixMultiply(psImage * outImage,   ///< Matrix to return, or NULL.
+                          psImage * inImage1,   ///< First input image.
+                          psImage * inImage2    ///< Second input image.
                          );
 
@@ -112,6 +112,6 @@
  *  @return  psImage*: Pointer to transposed psImage.
  */
-psImage *psMatrixTranspose(psImage * outImage,  // /< Image to return, or NULL
-                           const psImage * inImage      // /< Image to transpose
+psImage *psMatrixTranspose(psImage * outImage,  ///< Image to return, or NULL
+                           const psImage * inImage      ///< Image to transpose
                           );
 
@@ -124,6 +124,6 @@
  *  @return  psImage*: Pointer to matrix of Eigenvectors.
  */
-psImage *psMatrixEigenvectors(psImage * outImage,       // /< Eigenvectors to return, or NULL.
-                              psImage * inImage // /< Input image.
+psImage *psMatrixEigenvectors(psImage * outImage,       ///< Eigenvectors to return, or NULL.
+                              psImage * inImage ///< Input image.
                              );
 
@@ -137,6 +137,6 @@
  *  @return  psVector*: Pointer to psVector.
  */
-psVector *psMatrixToVector(psVector * outVector,        // /< Vector to return, or NULL.
-                           psImage * inImage    // /< Image to convert.
+psVector *psMatrixToVector(psVector * outVector,        ///< Vector to return, or NULL.
+                           psImage * inImage    ///< Image to convert.
                           );
 
@@ -150,6 +150,6 @@
  *  @return  psVector*: Pointer to psIamge.
  */
-psImage *psVectorToMatrix(psImage * outImage,   // /< Matrix to return, or NULL.
-                          psVector * inVector   // /< Vector to convert.
+psImage *psVectorToMatrix(psImage * outImage,   ///< Matrix to return, or NULL.
+                          psVector * inVector   ///< Vector to convert.
                          );
 
