aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/LU
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-07-22 10:54:42 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-07-22 10:54:42 +0000
commit172000aaeb968198dcafbb22edc03377bb16f599 (patch)
tree02f2531123f8a3a3f21a5ce7eaa15ab1d24d05af /Eigen/LU
parent516db2c3b97345553c3489681fba67f52a8eda6b (diff)
Add .perpendicular() function in Geometry module (adapted from Eigen1)
Documentation: * add an overview for each module. * add an example for .all() and Cwise::operator<
Diffstat (limited to 'Eigen/LU')
-rw-r--r--Eigen/LU11
1 files changed, 11 insertions, 0 deletions
diff --git a/Eigen/LU b/Eigen/LU
index 133bb4628..f452d8307 100644
--- a/Eigen/LU
+++ b/Eigen/LU
@@ -5,6 +5,17 @@
namespace Eigen {
+/** \defgroup LU_Module LU module
+ * This module includes LU decomposition and related notions such as matrix inversion and determinant.
+ * This module defines the following MatrixBase methods:
+ * - MatrixBase::inverse()
+ * - MatrixBase::determinant()
+ *
+ * \code
+ * #include <Eigen/LU>
+ * \endcode
+ */
+
#include "src/LU/Determinant.h"
#include "src/LU/Inverse.h"