Index: trunk/psLib/src/math/psMatrix.h
===================================================================
--- trunk/psLib/src/math/psMatrix.h	(revision 974)
+++ trunk/psLib/src/math/psMatrix.h	(revision 1407)
@@ -1,2 +1,3 @@
+
 /** @file  psMatrix.h
  *
@@ -21,6 +22,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-06-10 01:58:06 $
+ *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-07 00:06:06 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -28,5 +29,5 @@
 
 #ifndef PSMATRIX_H
-#define PSMATRIX_H
+#    define PSMATRIX_H
 
 /// @addtogroup Matrix
@@ -42,9 +43,8 @@
  *  @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.
+                    );
 
 /** LU Solution of psImage matrix.
@@ -57,10 +57,10 @@
  *  @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 function.
-);
+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.
+                         );
 
 /** Invert psImage matrix.
@@ -73,9 +73,8 @@
  *  @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
+                       );
 
 /** Calculate psImage matrix determinant.
@@ -87,7 +86,6 @@
  *  @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.
+                          );
 
 /** Performs psImage matrix multiplication.
@@ -100,9 +98,8 @@
  *  @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.
+                         );
 
 /** Transpose matrix.
@@ -115,8 +112,7 @@
  *  @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
+                          );
 
 /** Calculate matrix eigenvectors.
@@ -128,8 +124,7 @@
  *  @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.
+                             );
 
 /** Convert matrix to vector.
@@ -142,8 +137,7 @@
  *  @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.
+                          );
 
 /** Convert vector to matrix.
@@ -156,8 +150,7 @@
  *  @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.
+                         );
 
 /// @}
