Mercurial > hg > octave-nkf
diff liboctave/CMatrix.cc @ 479:8e9dcc406332
[project @ 1994-06-29 14:51:26 by jwe]
author | jwe |
---|---|
date | Wed, 29 Jun 1994 14:51:33 +0000 |
parents | 38cb88095913 |
children | 2ca256b77602 |
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;