aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/Tridiagonalization_packedMatrix.cpp
blob: 0f55d0c281aa25f9e10d0e2d28a66f106d94845e (plain)
1
2
3
4
5
6
7
8
Matrix4d X = Matrix4d::Random(4,4);
Matrix4d A = X + X.transpose();
cout << "Here is a random symmetric 4x4 matrix:" << endl << A << endl;
Tridiagonalization<Matrix4d> triOfA(A);
Matrix4d pm = triOfA.packedMatrix();
cout << "The packed matrix M is:" << endl << pm << endl;
cout << "The diagonal and subdiagonal corresponds to the matrix T, which is:" 
     << endl << triOfA.matrixT() << endl;