aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Minor.h
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-01-19 15:02:24 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-01-19 15:02:24 +0000
commit385fd3d918024f0e954b40b1b729887b16f43788 (patch)
treeffb1174a1b5fe7246155c5f32cec31896ad43179 /Eigen/src/Core/Minor.h
parentdcaa58744e75305b28b8dd4bbe6a40c4a1c9d0c1 (diff)
* clarify the situation with experimental parts
* remove all what was marked deprecated
Diffstat (limited to 'Eigen/src/Core/Minor.h')
-rw-r--r--Eigen/src/Core/Minor.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/Eigen/src/Core/Minor.h b/Eigen/src/Core/Minor.h
index 829bfefb2..e2d47da79 100644
--- a/Eigen/src/Core/Minor.h
+++ b/Eigen/src/Core/Minor.h
@@ -25,7 +25,8 @@
#ifndef EIGEN_MINOR_H
#define EIGEN_MINOR_H
-/** \class Minor
+/** \nonstableyet
+ * \class Minor
*
* \brief Expression of a minor
*
@@ -92,7 +93,8 @@ template<typename MatrixType> class Minor
const int m_row, m_col;
};
-/** \return an expression of the (\a row, \a col)-minor of *this,
+/** \nonstableyet
+ * \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.
*
@@ -108,7 +110,8 @@ MatrixBase<Derived>::minor(int row, int col)
return Minor<Derived>(derived(), row, col);
}
-/** This is the const version of minor(). */
+/** \nonstableyet
+ * This is the const version of minor(). */
template<typename Derived>
inline const Minor<Derived>
MatrixBase<Derived>::minor(int row, int col) const