LeastSquaresNormalEquations.cpp
Go to the documentation of this file.
1 MatrixXf A = MatrixXf::Random(3, 2);
2 VectorXf b = VectorXf::Random(3);
3 cout << "The solution using normal equations is:\n"
4  << (A.transpose() * A).ldlt().solve(A.transpose() * b) << endl;
Eigen
Namespace containing all symbols from the Eigen library.
Definition: jet.h:637
A
Definition: test_numpy_dtypes.cpp:298
b
VectorXf b
Definition: LeastSquaresNormalEquations.cpp:2
A
MatrixXf A
Definition: LeastSquaresNormalEquations.cpp:1


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