Eigen Tutioral Matrix
, Eigen , . RowsAtCompileTime ColsAtCompileTime Dynamic, , , . Eigen ; , , . , typedef MatrixXd, :
typedef Matrix<double, Dynamic, Dynamic> MatrixXd;
typedef VectorXi :
typedef Matrix<int, Dynamic, 1> VectorXi;
, , , :
Matrix<float, 3, Dynamic>
, :
Eigen::Matrix<float, Eigen::Dynamic, Eigen::Dynamic> myMatrix;
myMatrix.resize(1, 1);
myMatrix(0, 0) = 1.0;
myMatrix.resize(2, 2);
myMatrix(1, 1) = 1.0;
myMatrix.resize(3, 3);
myMatrix(2, 2) = 1.0;
myMatrix.resize(4, 4);
myMatrix(3, 3) = 1.0;