Index: trunk/psLib/src/dataManip/psConstants.h
===================================================================
--- trunk/psLib/src/dataManip/psConstants.h	(revision 3191)
+++ trunk/psLib/src/dataManip/psConstants.h	(revision 3264)
@@ -6,8 +6,8 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.54 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-02-10 02:36:41 $
- *
- *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
+ *  @version $Revision: 1.55 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-02-17 19:26:23 $
+ *
+ *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  *
  *  XXX: Add parenthesis around all arguments so that these macros can be
Index: trunk/psLib/src/dataManip/psDataManipErrors.h
===================================================================
--- trunk/psLib/src/dataManip/psDataManipErrors.h	(revision 3191)
+++ trunk/psLib/src/dataManip/psDataManipErrors.h	(revision 3264)
@@ -7,8 +7,8 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-02-03 00:54:10 $
+ *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-02-17 19:26:23 $
  *
- *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
+ *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
 
Index: trunk/psLib/src/dataManip/psFunctions.c
===================================================================
--- trunk/psLib/src/dataManip/psFunctions.c	(revision 3191)
+++ trunk/psLib/src/dataManip/psFunctions.c	(revision 3264)
@@ -7,8 +7,8 @@
  *  polynomials.  It also contains a Gaussian functions.
  *
- *  @version $Revision: 1.88 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-02-10 02:36:41 $
+ *  @version $Revision: 1.89 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-02-17 19:26:23 $
  *
- *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
+ *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  *
  *  XXX: What happens if the polyEVal functions are called with data of the wrong
Index: trunk/psLib/src/dataManip/psFunctions.h
===================================================================
--- trunk/psLib/src/dataManip/psFunctions.h	(revision 3191)
+++ trunk/psLib/src/dataManip/psFunctions.h	(revision 3264)
@@ -12,8 +12,8 @@
 *  @author GLG, MHPCC
 *
-*  @version $Revision: 1.42 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-02-08 00:47:18 $
+*  @version $Revision: 1.43 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-02-17 19:26:23 $
 *
-*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
+*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
 */
 
Index: trunk/psLib/src/dataManip/psMatrix.c
===================================================================
--- trunk/psLib/src/dataManip/psMatrix.c	(revision 3191)
+++ trunk/psLib/src/dataManip/psMatrix.c	(revision 3264)
@@ -19,9 +19,10 @@
  *
  *  @author Ross Harman, MHPCC
+ *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.22 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-01-17 22:17:29 $
+ *  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-02-17 19:26:23 $
  *
- *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
+ *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
 
@@ -191,5 +192,7 @@
     PS_CHECK_DIMEN_AND_TYPE(inImage, PS_DIMEN_IMAGE, outImage);
     PS_PTR_CHECK_NULL_GENERAL(outPerm, psMatrixLUD_EXIT);
-    psImageRecycle(outImage, inImage->numCols, inImage->numRows, inImage->type.type);
+
+    outImage = psImageRecycle(outImage, inImage->numCols, inImage->numRows, inImage->type.type);
+
     PS_CHECK_SQUARE(inImage, outImage);
     PS_CHECK_SQUARE(outImage, outImage);
@@ -299,5 +302,5 @@
     PS_CHECK_DIMEN_AND_TYPE(inImage, PS_DIMEN_IMAGE, outImage);
     PS_IMAGE_CHECK_EMPTY(inImage, outImage);
-    psImageRecycle(outImage, inImage->numCols, inImage->numRows, inImage->type.type);
+    outImage = psImageRecycle(outImage, inImage->numCols, inImage->numRows, inImage->type.type);
     PS_CHECK_SQUARE(inImage, outImage);
     PS_CHECK_SQUARE(outImage, outImage);
@@ -383,5 +386,7 @@
     PS_IMAGE_CHECK_EMPTY(inImage2, outImage);
     PS_CHECK_DIMEN_AND_TYPE(inImage1, PS_DIMEN_IMAGE, outImage);
-    psImageRecycle(outImage, inImage2->numCols, inImage2->numRows, inImage2->type.type);
+
+    outImage = psImageRecycle(outImage, inImage2->numCols, inImage2->numRows, inImage2->type.type);
+
     PS_CHECK_SQUARE(inImage1, outImage);
     PS_CHECK_SQUARE(inImage2, outImage);
@@ -473,5 +478,6 @@
     PS_CHECK_DIMEN_AND_TYPE(inImage, PS_DIMEN_IMAGE, outImage);
     PS_IMAGE_CHECK_EMPTY(inImage, outImage);
-    psImageRecycle(outImage, inImage->numCols, inImage->numRows, inImage->type.type);
+
+    outImage = psImageRecycle(outImage, inImage->numCols, inImage->numRows, inImage->type.type);
 
     // Initialize data
@@ -582,5 +588,5 @@
         PS_CHECK_DIMEN_AND_TYPE(inVector, PS_DIMEN_VECTOR, outImage);
         PS_VECTOR_CHECK_EMPTY(inVector, outImage);
-        psImageRecycle(outImage, 1, inVector->n, PS_TYPE_F64);
+        outImage = psImageRecycle(outImage, 1, inVector->n, PS_TYPE_F64);
         // More checks for PS_DIMEN_VECTOR
         if (outImage->numCols > 1) {
@@ -601,5 +607,5 @@
         PS_CHECK_DIMEN_AND_TYPE(inVector, PS_DIMEN_TRANSV, outImage);
         PS_VECTOR_CHECK_EMPTY(inVector, outImage);
-        psImageRecycle(outImage, inVector->n, 1, PS_TYPE_F64);
+        outImage = psImageRecycle(outImage, inVector->n, 1, PS_TYPE_F64);
         // More checks for PS_DIMEN_TRANSV
         if (outImage->numRows > 1) {
Index: trunk/psLib/src/dataManip/psMatrix.h
===================================================================
--- trunk/psLib/src/dataManip/psMatrix.h	(revision 3191)
+++ trunk/psLib/src/dataManip/psMatrix.h	(revision 3264)
@@ -22,8 +22,8 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-01-17 22:17:29 $
+ *  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-02-17 19:26:23 $
  *
- *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
+ *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
 
Index: trunk/psLib/src/dataManip/psMinimize.c
===================================================================
--- trunk/psLib/src/dataManip/psMinimize.c	(revision 3191)
+++ trunk/psLib/src/dataManip/psMinimize.c	(revision 3264)
@@ -9,8 +9,8 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.105 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-02-10 02:36:41 $
+ *  @version $Revision: 1.106 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-02-17 19:26:23 $
  *
- *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
+ *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  *
  *  XXX: must follow coding name standards on local functions.
Index: trunk/psLib/src/dataManip/psMinimize.h
===================================================================
--- trunk/psLib/src/dataManip/psMinimize.h	(revision 3191)
+++ trunk/psLib/src/dataManip/psMinimize.h	(revision 3264)
@@ -8,8 +8,8 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.38 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-02-03 00:54:10 $
+ *  @version $Revision: 1.39 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-02-17 19:26:23 $
  *
- *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
+ *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  *
  */
Index: trunk/psLib/src/dataManip/psRandom.c
===================================================================
--- trunk/psLib/src/dataManip/psRandom.c	(revision 3191)
+++ trunk/psLib/src/dataManip/psRandom.c	(revision 3264)
@@ -10,8 +10,8 @@
 *  @author GLG, MHPCC
 *
-*  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-01-15 01:15:09 $
+*  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-02-17 19:26:23 $
 *
-*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
+*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
 */
 
Index: trunk/psLib/src/dataManip/psRandom.h
===================================================================
--- trunk/psLib/src/dataManip/psRandom.h	(revision 3191)
+++ trunk/psLib/src/dataManip/psRandom.h	(revision 3264)
@@ -10,8 +10,8 @@
 *  @author GLG, MHPCC
 *
-*  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2004-12-21 23:25:14 $
+*  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-02-17 19:26:23 $
 *
-*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
+*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
 */
 
Index: trunk/psLib/src/dataManip/psStats.c
===================================================================
--- trunk/psLib/src/dataManip/psStats.c	(revision 3191)
+++ trunk/psLib/src/dataManip/psStats.c	(revision 3264)
@@ -9,8 +9,8 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.112 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-02-03 00:54:10 $
+ *  @version $Revision: 1.113 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-02-17 19:26:23 $
  *
- *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
+ *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
 
Index: trunk/psLib/src/dataManip/psStats.h
===================================================================
--- trunk/psLib/src/dataManip/psStats.h	(revision 3191)
+++ trunk/psLib/src/dataManip/psStats.h	(revision 3264)
@@ -10,8 +10,8 @@
  *  @author George Gusciora, MHPCC
  *
- *  @version $Revision: 1.38 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-02-03 00:54:10 $
+ *  @version $Revision: 1.39 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-02-17 19:26:23 $
  *
- *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
+ *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
 #if !defined(PS_STATS_H)
Index: trunk/psLib/src/dataManip/psVectorFFT.c
===================================================================
--- trunk/psLib/src/dataManip/psVectorFFT.c	(revision 3191)
+++ trunk/psLib/src/dataManip/psVectorFFT.c	(revision 3264)
@@ -5,8 +5,8 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.29 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-11-04 22:14:17 $
+ *  @version $Revision: 1.30 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-02-17 19:26:23 $
  *
- *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
+ *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
 
Index: trunk/psLib/src/dataManip/psVectorFFT.h
===================================================================
--- trunk/psLib/src/dataManip/psVectorFFT.h	(revision 3191)
+++ trunk/psLib/src/dataManip/psVectorFFT.h	(revision 3264)
@@ -7,8 +7,8 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-11-04 22:14:17 $
+ *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-02-17 19:26:23 $
  *
- *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
+ *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
 
