source: pacpussensors/trunk/Vislab/lib3dv/eigen/doc/snippets/Tridiagonalization_householderCoefficients.cpp@ 136

Last change on this file since 136 was 136, checked in by ldecherf, 7 years ago

Doc

File size: 303 bytes
Line 
1Matrix4d 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);
5Vector3d hc = triOfA.householderCoefficients();
6cout << "The vector of Householder coefficients is:" << endl << hc << endl;
Note: See TracBrowser for help on using the repository browser.