Index: /branches/rel-1_0/psLib/src/math/psMatrix.c
===================================================================
--- /branches/rel-1_0/psLib/src/math/psMatrix.c	(revision 12312)
+++ /branches/rel-1_0/psLib/src/math/psMatrix.c	(revision 12313)
@@ -22,6 +22,6 @@
  *  @author Andy Becker, University of Washington (SVD).
  *
- *  @version $Revision: 1.47 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2007-01-09 22:38:53 $
+ *  @version $Revision: 1.47.2.1 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-03-08 13:15:49 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -878,5 +878,5 @@
 
 // This code supplied by Andy Becker (becker@astro.washington.edu)
-psImage *psMatrixSVDSolve(psImage* evec, psVector* eval, const psImage* in)
+psImage *psMatrixSVD(psImage* evec, psVector* eval, const psImage* in)
 {
     #define psMatrixSVD_EXIT {psFree(evec); psFree(eval); return NULL;}
@@ -915,5 +915,5 @@
         /* make sure that these things are sorted! */
         if (i > 0) {
-            assert(eval->data.F64[i] > eval->data.F64[i-1]);
+            assert(eval->data.F64[i] <= eval->data.F64[i-1]);
         }
     }
Index: /branches/rel-1_0/psLib/src/math/psMatrix.h
===================================================================
--- /branches/rel-1_0/psLib/src/math/psMatrix.h	(revision 12312)
+++ /branches/rel-1_0/psLib/src/math/psMatrix.h	(revision 12313)
@@ -19,6 +19,6 @@
  * @author Ross Harman, MHPCC
  *
- * @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
- * @date $Date: 2007-01-23 22:47:23 $
+ * @version $Revision: 1.26.2.1 $ $Name: not supported by cvs2svn $
+ * @date $Date: 2007-03-08 13:15:49 $
  * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
@@ -177,5 +177,5 @@
 
 /// Single value decomposition, provided by Andy Becker
-psImage *psMatrixSVDSolve(psImage* evec, psVector* eval, const psImage* in);
+psImage *psMatrixSVD(psImage* evec, psVector* eval, const psImage* in);
 
 /// @}
