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