| Line | |
|---|
| 1 | #include <Eigen/Dense>
|
|---|
| 2 | #include <iostream>
|
|---|
| 3 |
|
|---|
| 4 | using namespace Eigen;
|
|---|
| 5 | using namespace std;
|
|---|
| 6 |
|
|---|
| 7 | int main(int, char**)
|
|---|
| 8 | {
|
|---|
| 9 | cout.precision(3);
|
|---|
| 10 | Matrix4d X = Matrix4d::Random(4,4);
|
|---|
| 11 | Matrix4d A = X + X.transpose();
|
|---|
| 12 | cout << "Here is a random symmetric 4x4 matrix:" << endl << A << endl;
|
|---|
| 13 | Tridiagonalization<Matrix4d> triOfA(A);
|
|---|
| 14 | Vector3d hc = triOfA.householderCoefficients();
|
|---|
| 15 | cout << "The vector of Householder coefficients is:" << endl << hc << endl;
|
|---|
| 16 |
|
|---|
| 17 | return 0;
|
|---|
| 18 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.