source:
pacpussensors/trunk/Vislab/lib3dv-1.2.0/lib3dv/eigen/doc/snippets/Tridiagonalization_householderCoefficients.cpp
| Last change on this file was 136, checked in by , 9 years ago | |
|---|---|
| File size: 303 bytes | |
| Line | |
|---|---|
| 1 | Matrix4d X = Matrix4d::Random(4,4); |
| 2 | Matrix4d A = X + X.transpose(); |
| 3 | cout << "Here is a random symmetric 4x4 matrix:" << endl << A << endl; |
| 4 | Tridiagonalization<Matrix4d> triOfA(A); |
| 5 | Vector3d hc = triOfA.householderCoefficients(); |
| 6 | cout << "The vector of Householder coefficients is:" << endl << hc << endl; |
Note:
See TracBrowser
for help on using the repository browser.
