Sign in
android
/
platform
/
external
/
eigen
/
bcf7b2918
/
.
/
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
;