changeset 1484:84796decb9af

[project @ 1995-09-26 09:30:32 by jwe]
author jwe
date Tue, 26 Sep 1995 09:30:32 +0000
parents 6422f071ba11
children 455df04f6d90
files liboctave/dMatrix.cc
diffstat 1 files changed, 8 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/dMatrix.cc	Tue Sep 26 09:24:44 1995 +0000
+++ b/liboctave/dMatrix.cc	Tue Sep 26 09:30:32 1995 +0000
@@ -1047,28 +1047,32 @@
 Matrix::lssolve (const ComplexMatrix& b) const
 {
   ComplexMatrix tmp (*this);
-  return tmp.lssolve (b);
+  int info;
+  int rank;
+  return tmp.lssolve (b, info, rank);
 }
 
 ComplexMatrix
 Matrix::lssolve (const ComplexMatrix& b, int& info) const
 {
   ComplexMatrix tmp (*this);
-  return tmp.lssolve (b);
+  int rank;
+  return tmp.lssolve (b, info, rank);
 }
 
 ComplexMatrix
 Matrix::lssolve (const ComplexMatrix& b, int& info, int& rank) const
 {
   ComplexMatrix tmp (*this);
-  return tmp.lssolve (b);
+  return tmp.lssolve (b, info, rank);
 }
 
 ColumnVector
 Matrix::lssolve (const ColumnVector& b) const
 {
   int info;
-  int rank; return lssolve (b, info, rank);
+  int rank;
+  return lssolve (b, info, rank);
 }
 
 ColumnVector