Gitiles
Code Review
Sign In
gerrit.openfyde.cn
/
chromium.googlesource.com
/
external
/
gitlab.com
/
libeigen
/
eigen
/
d1111d625ccfc29a4b4a0db0192cbf6e2fdedf3c
/
.
/
doc
/
snippets
/
TopicAliasing_block.cpp
blob: 7d40cfafdc61e70642d8917049ce0b4461c3b4c6 [
file
] [
log
] [
blame
]
MatrixXi
mat
(
3
,
3
);
mat
<<
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
;
cout
<<
"Here is the matrix mat:\n"
<<
mat
<<
endl
;
mat
.
bottomRightCorner
(
2
,
2
)
=
mat
.
topLeftCorner
(
2
,
2
);
cout
<<
"After the assignment, mat = \n"
<<
mat
<<
endl
;