aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/MatrixBase_diagonal.cpp
blob: 005fba7b6351e3668616b46b134493389c217285 (plain)
1
2
3
4
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;