MatrixBase_diagonal.cpp revision c981c48f5bc9aefeffc0bcb0cc3934c2fae179dd
1Matrix3i m = Matrix3i::Random();
2cout << "Here is the matrix m:" << endl << m << endl;
3cout << "Here are the coefficients on the main diagonal of m:" << endl
4     << m.diagonal() << endl;
5