HessenbergDecomposition_matrixH.cpp
Go to the documentation of this file.
1 Matrix4f A = MatrixXf::Random(4,4);
2 cout << "Here is a random 4x4 matrix:" << endl << A << endl;
3 HessenbergDecomposition<MatrixXf> hessOfA(A);
4 MatrixXf H = hessOfA.matrixH();
5 cout << "The Hessenberg matrix H is:" << endl << H << endl;
6 MatrixXf Q = hessOfA.matrixQ();
7 cout << "The orthogonal matrix Q is:" << endl << Q << endl;
8 cout << "Q H Q^T is:" << endl << Q * H * Q.transpose() << endl;
A
Definition: test_numpy_dtypes.cpp:298
H
MatrixXf H
Definition: HessenbergDecomposition_matrixH.cpp:4
Eigen::Quaternion
The quaternion class used to represent 3D orientations and rotations.
Definition: ForwardDeclarations.h:293
hessOfA
cout<< "Here is a random 4x4 matrix:"<< endl<< A<< endl;HessenbergDecomposition< MatrixXf > hessOfA(A)


gtsam
Author(s):
autogenerated on Thu Jun 13 2024 03:02:31