blob: 0f55d0c281aa25f9e10d0e2d28a66f106d94845e [file] [log] [blame]
Brian Silverman72890c22015-09-19 14:37:37 -04001Matrix4d X = Matrix4d::Random(4,4);
2Matrix4d A = X + X.transpose();
3cout << "Here is a random symmetric 4x4 matrix:" << endl << A << endl;
4Tridiagonalization<Matrix4d> triOfA(A);
5Matrix4d pm = triOfA.packedMatrix();
6cout << "The packed matrix M is:" << endl << pm << endl;
7cout << "The diagonal and subdiagonal corresponds to the matrix T, which is:"
8 << endl << triOfA.matrixT() << endl;