Gitiles
Code Review
Sign In
gerrit.openfyde.cn
/
chromium.googlesource.com
/
external
/
gitlab.com
/
libeigen
/
eigen
/
ce425d92f1c1d199c8428c46b4c4ea3be81b137b
/
.
/
doc
/
snippets
/
MatrixBase_diagonal.cpp
blob: 005fba7b6351e3668616b46b134493389c217285 [
file
] [
log
] [
blame
]
Matrix3i
m
=
Matrix3i
::
random
();
cout
<<
"Here is the matrix m:"
<<
endl
<<
m
<<
endl
;
cout
<<
"Here are the coefficients on the main diagonal of m:"
<<
endl
<<
m
.
diagonal
()
<<
endl
;