LP-311 Remove basic/advanced stabilization tab auto-switch (autotune/txpid lock issues)
[librepilot.git] / ground / gcs / src / libs / eigen / doc / snippets / Tridiagonalization_householderCoefficients.cpp
blobe5d87288020662ca08bf69a7aaeee358b1748b0f
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;