PX4 Firmware
PX4 Autopilot Software http://px4.io
|
Least Squares Solver using QR householder decomposition. More...
#include "math.hpp"
Go to the source code of this file.
Classes | |
class | matrix::LeastSquaresSolver< Type, M, N > |
Namespaces | |
matrix | |
Least Squares Solver using QR householder decomposition.
It calculates x for Ax = b. A = Q*R where R is an upper triangular matrix.
R*x = Q^T*b This is efficiently solved for x because of the upper triangular property of R.
Definition in file LeastSquaresSolver.hpp.