aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/LU/Inverse.h
diff options
context:
space:
mode:
Diffstat (limited to 'Eigen/src/LU/Inverse.h')
-rw-r--r--Eigen/src/LU/Inverse.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/Eigen/src/LU/Inverse.h b/Eigen/src/LU/Inverse.h
index 8ff723e05..e9830cbe1 100644
--- a/Eigen/src/LU/Inverse.h
+++ b/Eigen/src/LU/Inverse.h
@@ -25,7 +25,9 @@
#ifndef EIGEN_INVERSE_H
#define EIGEN_INVERSE_H
-/** \class Inverse
+/** \lu_module
+ *
+ * \class Inverse
*
* \brief Inverse of a matrix
*
@@ -258,7 +260,9 @@ void Inverse<MatrixType, CheckExistence>::_compute(const MatrixType& matrix)
else _compute_in_general_case(matrix);
}
-/** \return the matrix inverse of \c *this, if it exists.
+/** \lu_module
+ *
+ * \returns the matrix inverse of \c *this, if it exists.
*
* Example: \include MatrixBase_inverse.cpp
* Output: \verbinclude MatrixBase_inverse.out
@@ -272,7 +276,9 @@ MatrixBase<Derived>::inverse() const
return Inverse<typename Derived::Eval, true>(eval());
}
-/** \return the matrix inverse of \c *this, which is assumed to exist.
+/** \lu_module
+ *
+ * \returns the matrix inverse of \c *this, which is assumed to exist.
*
* Example: \include MatrixBase_quickInverse.cpp
* Output: \verbinclude MatrixBase_quickInverse.out