Index: trunk/psLib/src/dataManip/psMatrix.c
===================================================================
--- trunk/psLib/src/dataManip/psMatrix.c	(revision 2021)
+++ trunk/psLib/src/dataManip/psMatrix.c	(revision 2204)
@@ -20,6 +20,6 @@
  *  @author Ross Harman, MHPCC
  *   
- *  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-10-08 02:48:01 $
+ *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-10-27 00:57:31 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -119,8 +119,8 @@
 psImage* psMatrixLUD(psImage* outImage, psVector* outPerm, psImage* inImage)
 {
-    int signum = 0;
-    int arraySize = 0;
-    int numRows = 0;
-    int numCols = 0;
+    psS32 signum = 0;
+    psS32 arraySize = 0;
+    psS32 numRows = 0;
+    psS32 numCols = 0;
     gsl_matrix lu;
     gsl_permutation perm;
@@ -165,7 +165,7 @@
                           const psVector* inVector, const psVector* inPerm)
 {
-    int arraySize = 0;
-    int numRows = 0;
-    int numCols = 0;
+    psS32 arraySize = 0;
+    psS32 numRows = 0;
+    psS32 numCols = 0;
     gsl_matrix lu;
     gsl_permutation perm;
@@ -217,8 +217,8 @@
 psImage* psMatrixInvert(psImage* outImage, const psImage* inImage, float *restrict det)
 {
-    int signum = 0;
-    int arraySize = 0;
-    int numRows = 0;
-    int numCols = 0;
+    psS32 signum = 0;
+    psS32 arraySize = 0;
+    psS32 numRows = 0;
+    psS32 numCols = 0;
     gsl_matrix inv;
     gsl_matrix *lu;
@@ -271,8 +271,8 @@
 float *psMatrixDeterminant(const psImage* restrict inImage)
 {
-    int signum = 0;
-    int arraySize = 0;
-    int numRows = 0;
-    int numCols = 0;
+    psS32 signum = 0;
+    psS32 arraySize = 0;
+    psS32 numRows = 0;
+    psS32 numCols = 0;
     float *det = NULL;
     gsl_matrix *lu = NULL;
@@ -313,7 +313,7 @@
 psImage* psMatrixMultiply(psImage* outImage, psImage* inImage1, psImage* inImage2)
 {
-    int arraySize = 0;
-    int numRows = 0;
-    int numCols = 0;
+    psS32 arraySize = 0;
+    psS32 numRows = 0;
+    psS32 numCols = 0;
     gsl_matrix m1;
     gsl_matrix m2;
@@ -355,7 +355,7 @@
 psImage* psMatrixTranspose(psImage* outImage, const psImage* inImage)
 {
-    int arraySize = 0;
-    int numRows = 0;
-    int numCols = 0;
+    psS32 arraySize = 0;
+    psS32 numRows = 0;
+    psS32 numCols = 0;
     gsl_matrix trans;
 
@@ -392,6 +392,6 @@
 psImage* psMatrixEigenvectors(psImage* outImage, psImage* inImage)
 {
-    int numRows = 0;
-    int numCols = 0;
+    psS32 numRows = 0;
+    psS32 numCols = 0;
     gsl_vector *eVals = NULL;
     gsl_eigen_symmv_workspace *w = NULL;
@@ -436,5 +436,5 @@
 psVector* psMatrixToVector(psVector* outVector, const psImage* inImage)
 {
-    int size = 0;
+    psS32 size = 0;
 
     // Error checks
@@ -495,5 +495,5 @@
 psImage* psVectorToMatrix(psImage* outImage, const psVector* inVector)
 {
-    int size = 0;
+    psS32 size = 0;
 
     // Error checks
