# HG changeset patch # User jwe # Date 812107832 0 # Node ID 84796decb9af1d5ef87dfcf8ef4d8242cd1907f8 # Parent 6422f071ba11c54c032791ccf1662bf28d69fbf8 [project @ 1995-09-26 09:30:32 by jwe] diff --git a/liboctave/dMatrix.cc b/liboctave/dMatrix.cc --- a/liboctave/dMatrix.cc +++ b/liboctave/dMatrix.cc @@ -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