comparison 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
comparison
equal deleted inserted replaced
6478:4da9255998e3 6479:2ee8293554a3
966 ComplexMatrix 966 ComplexMatrix
967 ComplexMatrix::inverse (void) const 967 ComplexMatrix::inverse (void) const
968 { 968 {
969 octave_idx_type info; 969 octave_idx_type info;
970 double rcond; 970 double rcond;
971 MatrixType mattype (*this);
972 return inverse (mattype, info, rcond, 0, 0);
973 }
974
975 ComplexMatrix
976 ComplexMatrix::inverse (octave_idx_type& info) const
977 {
978 double rcond;
979 MatrixType mattype (*this);
980 return inverse (mattype, info, rcond, 0, 0);
981 }
982
983 ComplexMatrix
984 ComplexMatrix::inverse (octave_idx_type& info, double& rcond, int force,
985 int calc_cond) const
986 {
971 MatrixType mattype (*this); 987 MatrixType mattype (*this);
972 return inverse (mattype, info, rcond, 0, 0); 988 return inverse (mattype, info, rcond, 0, 0);
973 } 989 }
974 990
975 ComplexMatrix 991 ComplexMatrix