aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/Cholesky
diff options
context:
space:
mode:
Diffstat (limited to 'Eigen/Cholesky')
-rw-r--r--Eigen/Cholesky11
1 files changed, 11 insertions, 0 deletions
diff --git a/Eigen/Cholesky b/Eigen/Cholesky
index d4b487ce7..a0d4311f9 100644
--- a/Eigen/Cholesky
+++ b/Eigen/Cholesky
@@ -14,6 +14,17 @@
namespace Eigen {
+/** \defgroup Cholesky_Module Cholesky module
+ * This module provides two variants of the Cholesky decomposition for selfadjoint (hermitian) matrices.
+ * Those decompositions are accessible via the following MatrixBase methods:
+ * - MatrixBase::cholesky(),
+ * - MatrixBase::choleskyNoSqrt()
+ *
+ * \code
+ * #include <Eigen/Cholesky>
+ * \endcode
+ */
+
#include "src/Cholesky/Cholesky.h"
#include "src/Cholesky/CholeskyWithoutSquareRoot.h"