changeset 479:8e9dcc406332

[project @ 1994-06-29 14:51:26 by jwe]
author jwe
date Wed, 29 Jun 1994 14:51:33 +0000
parents 90964309100b
children 738791c163b2
files liboctave/CMatrix.cc liboctave/dMatrix.cc
diffstat 2 files changed, 11 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/CMatrix.cc
+++ b/liboctave/CMatrix.cc
@@ -905,7 +905,8 @@
 ComplexMatrix::inverse (void) const
 {
   int info;
-  double rcond; return inverse (info, rcond);
+  double rcond;
+  return inverse (info, rcond);
 }
 
 ComplexMatrix
@@ -916,7 +917,7 @@
 }
 
 ComplexMatrix
-ComplexMatrix::inverse (int& info, double& rcond) const
+ComplexMatrix::inverse (int& info, volatile double& rcond) const
 {
   int nr = rows ();
   int nc = cols ();
@@ -1035,7 +1036,7 @@
 }
 
 ComplexDET
-ComplexMatrix::determinant (int& info, double& rcond) const
+ComplexMatrix::determinant (int& info, volatile double& rcond) const
 {
   ComplexDET retval;
 
@@ -1117,7 +1118,8 @@
   return solve (b, info, rcond);
 }
 ComplexMatrix
-ComplexMatrix::solve (const ComplexMatrix& b, int& info, double& rcond) const
+ComplexMatrix::solve (const ComplexMatrix& b, int& info,
+		      volatile double& rcond) const
 {
   ComplexMatrix retval;
 
@@ -1180,7 +1182,7 @@
 
 ComplexColumnVector
 ComplexMatrix::solve (const ComplexColumnVector& b, int& info,
-		      double& rcond) const
+		      volatile double& rcond) const
 {
   ComplexColumnVector retval;
 
--- a/liboctave/dMatrix.cc
+++ b/liboctave/dMatrix.cc
@@ -566,7 +566,7 @@
 }
 
 Matrix
-Matrix::inverse (int& info, double& rcond) const
+Matrix::inverse (int& info, volatile double& rcond) const
 {
   int nr = rows ();
   int nc = cols ();
@@ -685,7 +685,7 @@
 }
 
 DET
-Matrix::determinant (int& info, double& rcond) const
+Matrix::determinant (int& info, volatile double& rcond) const
 {
   DET retval;
 
@@ -746,7 +746,7 @@
 }
 
 Matrix
-Matrix::solve (const Matrix& b, int& info, double& rcond) const
+Matrix::solve (const Matrix& b, int& info, volatile double& rcond) const
 {
   Matrix retval;
 
@@ -827,7 +827,7 @@
 }
 
 ColumnVector
-Matrix::solve (const ColumnVector& b, int& info, double& rcond) const
+Matrix::solve (const ColumnVector& b, int& info, volatile double& rcond) const
 {
   ColumnVector retval;