diff options
author | Benoit Jacob <jacob.benoit.1@gmail.com> | 2008-07-08 00:49:10 +0000 |
---|---|---|
committer | Benoit Jacob <jacob.benoit.1@gmail.com> | 2008-07-08 00:49:10 +0000 |
commit | f5791eeb7054b78ded6eb080e9712651da6c6a34 (patch) | |
tree | 414c138b050003fdc32e0cebcc6f39ea1e94dc7f /Eigen/src/Cholesky | |
parent | c910c517b34b147894e7fa62cb9602cc19e0669b (diff) |
the big Array/Cwise rework as discussed on the mailing list. The new API
can be seen in Eigen/src/Core/Cwise.h.
Diffstat (limited to 'Eigen/src/Cholesky')
-rw-r--r-- | Eigen/src/Cholesky/CholeskyWithoutSquareRoot.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Cholesky/CholeskyWithoutSquareRoot.h b/Eigen/src/Cholesky/CholeskyWithoutSquareRoot.h index 652cf670a..8905385cc 100644 --- a/Eigen/src/Cholesky/CholeskyWithoutSquareRoot.h +++ b/Eigen/src/Cholesky/CholeskyWithoutSquareRoot.h @@ -136,7 +136,7 @@ typename Derived::Eval CholeskyWithoutSquareRoot<MatrixType>::solve(MatrixBase<D .inverseProduct( (matrixL() .inverseProduct(vecB)) - .cwiseQuotient(m_matrix.diagonal()) + .cwise()/m_matrix.diagonal() ); } |