aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/ConditionEstimator.h
diff options
context:
space:
mode:
authorGravatar Rasmus Munk Larsen <rmlarsen@google.com>2016-04-04 14:34:59 -0700
committerGravatar Rasmus Munk Larsen <rmlarsen@google.com>2016-04-04 14:34:59 -0700
commit513c3729605a8d447d6f4b494851601601db70e4 (patch)
tree0fdbe9a3169444034cd716fb0386d86e240bbf4d /Eigen/src/Core/ConditionEstimator.h
parent86e0ed81f8db5a0c9562b62a67a9ba60ec58dec0 (diff)
Fix docstrings to list all supported decompositions.
Diffstat (limited to 'Eigen/src/Core/ConditionEstimator.h')
-rw-r--r--Eigen/src/Core/ConditionEstimator.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/Eigen/src/Core/ConditionEstimator.h b/Eigen/src/Core/ConditionEstimator.h
index 12b4ae648..35ec56128 100644
--- a/Eigen/src/Core/ConditionEstimator.h
+++ b/Eigen/src/Core/ConditionEstimator.h
@@ -53,9 +53,9 @@ struct SignOrUnity<Vector, Vector, false> {
* \returns an estimate of the reciprocal condition number
* (1 / (||matrix||_1 * ||inv(matrix)||_1)) of matrix, given the matrix and
* its decomposition. Supports the following decompositions: FullPivLU,
- * PartialPivLU.
+ * PartialPivLU, LDLT, and LLT.
*
- * \sa FullPivLU, PartialPivLU.
+ * \sa FullPivLU, PartialPivLU, LDLT, LLT.
*/
template <typename Decomposition>
typename Decomposition::RealScalar ReciprocalConditionNumberEstimate(
@@ -82,9 +82,9 @@ typename Decomposition::RealScalar ReciprocalConditionNumberEstimate(
* \returns an estimate of the reciprocal condition number
* (1 / (||matrix||_1 * ||inv(matrix)||_1)) of matrix, given ||matrix||_1 and
* its decomposition. Supports the following decompositions: FullPivLU,
- * PartialPivLU.
+ * PartialPivLU, LDLT, and LLT.
*
- * \sa FullPivLU, PartialPivLU.
+ * \sa FullPivLU, PartialPivLU, LDLT, LLT.
*/
template <typename Decomposition>
typename Decomposition::RealScalar ReciprocalConditionNumberEstimate(
@@ -114,6 +114,10 @@ typename Decomposition::RealScalar ReciprocalConditionNumberEstimate(
* The most common usage is in estimating the condition number
* ||matrix||_1 * ||inv(matrix)||_1. The first term ||matrix||_1 can be
* computed directly in O(n^2) operations.
+ *
+ * Supports the following decompositions: FullPivLU, PartialPivLU, LDLT, and LLT.
+ *
+ * \sa FullPivLU, PartialPivLU, LDLT, LLT.
*/
template <typename Decomposition>
typename Decomposition::RealScalar InverseMatrixL1NormEstimate(