Document Tridiagonalization class, remove unused types.

This commit is contained in:
Jitse Niesen
2010-05-01 17:52:16 +01:00
parent d9c1224133
commit afed0ef90d
7 changed files with 263 additions and 44 deletions

View File

@@ -0,0 +1,6 @@
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);
Vector3d hc = triOfA.householderCoefficients();
cout << "The vector of Householder coefficients is:" << endl << hc << endl;