diff liboctave/CMatrix.cc @ 6479:2ee8293554a3

[project @ 2007-04-03 15:30:58 by jwe]
author jwe
date Tue, 03 Apr 2007 15:30:58 +0000
parents 334499d75c5c
children 7e958a1532c6
line wrap: on
line diff
--- a/liboctave/CMatrix.cc	Thu Mar 29 16:31:16 2007 +0000
+++ b/liboctave/CMatrix.cc	Tue Apr 03 15:30:58 2007 +0000
@@ -973,6 +973,22 @@
 }
 
 ComplexMatrix
+ComplexMatrix::inverse (octave_idx_type& info) const
+{
+  double rcond;
+  MatrixType mattype (*this);
+  return inverse (mattype, info, rcond, 0, 0);
+}
+
+ComplexMatrix
+ComplexMatrix::inverse (octave_idx_type& info, double& rcond, int force,
+			int calc_cond) const
+{
+  MatrixType mattype (*this);
+  return inverse (mattype, info, rcond, 0, 0);
+}
+
+ComplexMatrix
 ComplexMatrix::inverse (MatrixType &mattype) const
 {
   octave_idx_type info;