#include "SVD.hpp"
Go to the source code of this file.
Namespaces | |
namespace | kn |
Functions | |
void | kn::solveSystemSVD (const Matrix< double > &a, Vector< double > &x, const Vector< double > &b) |
Resolve the system Ax=b using a SVD Only x is modified and contains the result Based on Numerical Recipes Second Edition (1992). | |
void | kn::solveNullSystemSVD (const Matrix< double > &a, Vector< double > &x) |
Resolve the system Ax=0 using a SVD Only x is modified and contains the result Based on multiple view geometry p73 p564. | |
void | kn::solveSystemGaussianElimination (const Matrix< double > &a, Vector< double > &x, const Vector< double > &b, const bool total=false) |
Resolve the system Ax=b using a gaussian elimination Only x is modified and contains the result. |