2009-02-06 05:19:40 +08:00
|
|
|
Matrix4i m = Matrix4i::Random();
|
|
|
|
|
cout << "Here is the matrix m:" << endl << m << endl;
|
|
|
|
|
cout << "Here are the coefficients on the 1st super-diagonal and 2nd sub-diagonal of m:" << endl
|
2009-05-11 00:24:39 +08:00
|
|
|
<< m.diagonal(1).transpose() << endl
|
|
|
|
|
<< m.diagonal(-2).transpose() << endl;
|