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