Index: trunk/psLib/src/math/psMatrix.h
===================================================================
--- trunk/psLib/src/math/psMatrix.h	(revision 4385)
+++ trunk/psLib/src/math/psMatrix.h	(revision 4388)
@@ -21,6 +21,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-25 00:51:28 $
+ *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-25 01:15:01 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -43,7 +43,7 @@
  */
 psImage* psMatrixLUD(
-    psImage* outImage,                 ///< Image to return, or NULL.
-    psVector** outPerm,                ///< Output permutation vector used by psMatrixLUSolve.
-    psImage* inImage                   ///< Image to decompose.
+    psImage* out,                      ///< Image to return, or NULL.
+    psVector** perm,                   ///< Output permutation vector used by psMatrixLUSolve.
+    psImage* in                        ///< Image to decompose.
 );
 
@@ -58,8 +58,8 @@
  */
 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* out,                     ///< Vector to return, or NULL.
+    const psImage* LU,                 ///< LU-decomposed matrix.
+    const psVector* RHS,               ///< Vector right-hand-side of equation.
+    const psVector* perm               ///< Permutation vector resulting from psMatrixLUD function.
 );
 
@@ -74,7 +74,7 @@
  */
 psImage* psMatrixInvert(
-    psImage* out,                 ///< Image to return, or NULL for in-place substitution.
-    const psImage* in,            ///< Image to be inverted
-    float *det                         ///< Determinant to return, or NULL
+    psImage* out,                      ///< Image to return, or NULL for in-place substitution.
+    const psImage* in,                 ///< Image to be inverted
+    float *determinant                 ///< Determinant to return, or NULL
 );
 
@@ -101,7 +101,7 @@
  */
 psImage* psMatrixMultiply(
-    psImage* outImage,                 ///< Matrix to return, or NULL.
-    psImage* inImage1,                 ///< First input image.
-    psImage* inImage2                  ///< Second input image.
+    psImage* out,                      ///< Matrix to return, or NULL.
+    psImage* in1,                      ///< First input image.
+    psImage* in2                       ///< Second input image.
 );
 
@@ -116,5 +116,5 @@
  */
 psImage* psMatrixTranspose(
-    psImage* outImage,                 ///< Image to return, or NULL
+    psImage* out,                 ///< Image to return, or NULL
     const psImage* inImage             ///< Image to transpose
 );
