Sign in
eigen
/
mirror
/
c21a80be3d0506587e73f7a5796df6e83967a934
/
.
/
doc
/
snippets
/
MatrixBase_col.cpp
blob: cf0241e9b1c7eae4aa957e34604ac2e68abeebb2 [
file
] [
log
] [
blame
]
Matrix3d
m
=
Matrix3d
::
Identity
();
m
.
col
(
1
)
=
Vector3d
(
4
,
5
,
6
);
cout
<<
m
<<
endl
;