You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
394 B
8 lines
394 B
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;
|