Sign in
eigen
/
mirror
/
7e0972963edfa2cd4bcb3be56aa1f6e7cc9293cd
/
.
/
doc
/
snippets
/
MatrixBase_row.cpp
blob: 5af667a1f2d61ee3f08e794366f922fc2079179a [
file
]
// SPDX-FileCopyrightText: The Eigen Authors
// SPDX-License-Identifier: MPL-2.0
Matrix3d
m
=
Matrix3d
::
Identity
();
m
.
row
(
1
)
=
Vector3d
(
4
,
5
,
6
);
cout
<<
m
<<
endl
;