aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
diff options
context:
space:
mode:
authorGravatar Hauke Heibel <hauke.heibel@gmail.com>2009-10-27 16:02:36 +0100
committerGravatar Hauke Heibel <hauke.heibel@gmail.com>2009-10-27 16:02:36 +0100
commit427f8a87d1c184e9fb0c5fdc62197be2a0abb910 (patch)
tree65000b8ea755e7ad23d16c4821af70319ed649b5 /Eigen
parentdbaba9019ba2ca116406f286a71a745179e61531 (diff)
Added dox for the new typedefs.
Diffstat (limited to 'Eigen')
-rw-r--r--Eigen/src/Core/Matrix.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Eigen/src/Core/Matrix.h b/Eigen/src/Core/Matrix.h
index cc2d71588..17d2f2836 100644
--- a/Eigen/src/Core/Matrix.h
+++ b/Eigen/src/Core/Matrix.h
@@ -58,6 +58,9 @@ template <typename Derived, typename OtherDerived, bool IsVector = static_cast<b
* \li \c MatrixXf is a dynamic-size matrix of floats (\c Matrix<float, Dynamic, Dynamic>)
* \li \c VectorXf is a dynamic-size vector of floats (\c Matrix<float, Dynamic, 1>)
*
+ * \li \c Matrix2Xf is a partially fixed-size (dynamic-size) matrix of floats (\c Matrix<float, 2, Dynamic>)
+ * \li \c MatrixX3d is a partially dynamic-size (fixed-size) matrix of double (\c Matrix<double, Dynamic, 3>)
+ *
* See \link matrixtypedefs this page \endlink for a complete list of predefined \em %Matrix and \em Vector typedefs.
*
* You can access elements of vectors and matrices using normal subscripting: