aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Cholesky/LDLT.h
diff options
context:
space:
mode:
Diffstat (limited to 'Eigen/src/Cholesky/LDLT.h')
-rw-r--r--Eigen/src/Cholesky/LDLT.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/Eigen/src/Cholesky/LDLT.h b/Eigen/src/Cholesky/LDLT.h
index e70a324f6..aa967f6b9 100644
--- a/Eigen/src/Cholesky/LDLT.h
+++ b/Eigen/src/Cholesky/LDLT.h
@@ -142,16 +142,12 @@ void LDLT<MatrixType>::compute(const MatrixType& a)
}
/** Computes the solution x of \f$ A x = b \f$ using the current decomposition of A.
- * The result is stored in \a bAndx
+ * The result is stored in \a result
*
* \returns true in case of success, false otherwise.
*
* In other words, it computes \f$ b = A^{-1} b \f$ with
* \f$ {L^{*}}^{-1} D^{-1} L^{-1} b \f$ from right to left.
- * \param bAndX stores both the matrix \f$ b \f$ and the result \f$ x \f$
- *
- * Example: \include LLTLDLT_solve.cpp
- * Output: \verbinclude LLTLDLT_solve.out
*
* \sa LDLT::solveInPlace(), MatrixBase::ldlt()
*/