Sign in
eigen
/
mirror
/
ed6e07b2f6d91fa34253f97d13049d7cbabf6a34
/
.
/
doc
/
snippets
/
MatrixBase_diagonal.cpp
blob: 005fba7b6351e3668616b46b134493389c217285 [
file
]
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
;