Complete doc with MatrixXNt and MatrixNXt

This commit is contained in:
Florian Maurin
2022-02-11 21:55:54 +00:00
committed by Antonio Sánchez
parent cb5ca1c901
commit fbc62f7df9
2 changed files with 8 additions and 6 deletions

View File

@@ -277,6 +277,8 @@ Matrix<typename Scalar,
Eigen defines the following Matrix typedefs:
\li \c MatrixNt for `Matrix<type, N, N>`. For example, \c MatrixXi for `Matrix<int, Dynamic, Dynamic>`.
\li \c MatrixXNt for `Matrix<type, Dynamic, N>`. For example, \c MatrixX3i for `Matrix<int, Dynamic, 3>`.
\li \c MatrixNXt for `Matrix<type, N, Dynamic>`. For example, \c Matrix4Xd for `Matrix<d, 4, Dynamic>`.
\li \c VectorNt for `Matrix<type, N, 1>`. For example, \c Vector2f for `Matrix<float, 2, 1>`.
\li \c RowVectorNt for `Matrix<type, 1, N>`. For example, \c RowVector3d for `Matrix<double, 1, 3>`.