Sign in
eigen
/
mirror
/
283d871a3f461512d560f1bcbb2b8e1d650941b9
/
.
/
doc
/
snippets
/
MatrixBase_row.cpp
blob: 481bff84b2cc24bb073fe8d9fc73f02c61f54257 [
file
] [
log
] [
blame
]
Matrix3d
m
=
Matrix3d
::
Identity
();
m
.
row
(
1
)
=
Vector3d
(
4
,
5
,
6
);
cout
<<
m
<<
endl
;