blob: 4bd3c7eeb2ebaab4d3b9ee7104bd0df0b8e5e174 [file] [log] [blame]
Austin Schuh189376f2018-12-20 22:11:15 +11001Matrix3i m = Matrix3i::Random();
2cout << "Here is the matrix m:" << endl << m << endl;
3cout << "Here is the symmetric matrix extracted from the upper part of m:" << endl
4 << Matrix3i(m.selfadjointView<Upper>()) << endl;
5cout << "Here is the symmetric matrix extracted from the lower part of m:" << endl
6 << Matrix3i(m.selfadjointView<Lower>()) << endl;