aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Core/Minor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Core/Minor.h')
-rw-r--r--src/Core/Minor.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Core/Minor.h b/src/Core/Minor.h
index 01389ed22..50422c5dd 100644
--- a/src/Core/Minor.h
+++ b/src/Core/Minor.h
@@ -73,6 +73,9 @@ template<typename MatrixType> class Minor
const int m_row, m_col;
};
+/** \return an expression of the (\a row, \a col)-minor of *this,
+ * i.e. an expression constructed from *this by removing the specified
+ * row and column. */
template<typename Scalar, typename Derived>
Minor<Derived>
MatrixBase<Scalar, Derived>::minor(int row, int col) const