aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Core/Minor.h
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2007-12-20 21:11:05 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2007-12-20 21:11:05 +0000
commit647a817b2e352ae8f3599ba393d344f83d3b416e (patch)
tree439f62c6d8a5d1ec4315e67b729633b16be8aaf1 /src/Core/Minor.h
parentcddeeee17d0bac36f9fa0fa8177792b6ce7a2c35 (diff)
more documentation and examples, add Doxyfile and Mainpage.dox and also
the benchmark program
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