Eigen 3.4.90
doc
snippets
MatrixBase_col.cpp
Go to the documentation of this file.
1
Matrix3d
m
= Matrix3d::Identity();
2
m
.col(1) =
Vector3d
(4,5,6);
3
cout <<
m
<< endl;
m
Matrix3d m
Definition:
MatrixBase_col.cpp:1
Eigen::Matrix3d
Matrix< double, 3, 3 > Matrix3d
3×3 matrix of type double.
Definition:
Matrix.h:502
Eigen::Vector3d
Matrix< double, 3, 1 > Vector3d
3×1 vector of type double.
Definition:
Matrix.h:502