Mercurial > hg > octave-lojdl
comparison liboctave/CMatrix.cc @ 6060:ced23ae2b5cc
[project @ 2006-10-18 02:56:22 by jwe]
author | jwe |
---|---|
date | Wed, 18 Oct 2006 02:56:54 +0000 |
parents | ae09df27153f |
children | b3c425131211 |
comparison
equal
deleted
inserted
replaced
6059:8fd77759707c | 6060:ced23ae2b5cc |
---|---|
2168 ComplexMatrix | 2168 ComplexMatrix |
2169 ComplexMatrix::solve (const ComplexMatrix& b, octave_idx_type& info, double& rcond, | 2169 ComplexMatrix::solve (const ComplexMatrix& b, octave_idx_type& info, double& rcond, |
2170 solve_singularity_handler sing_handler) const | 2170 solve_singularity_handler sing_handler) const |
2171 { | 2171 { |
2172 MatrixType mattype (*this); | 2172 MatrixType mattype (*this); |
2173 return solve (b, info, rcond, sing_handler); | 2173 return solve (mattype, b, info, rcond, sing_handler); |
2174 } | 2174 } |
2175 | 2175 |
2176 ComplexColumnVector | 2176 ComplexColumnVector |
2177 ComplexMatrix::solve (const ColumnVector& b) const | 2177 ComplexMatrix::solve (const ColumnVector& b) const |
2178 { | 2178 { |