It describes the linear algebra types and algorithms needed by the class Monge_via_jet_fitting.
SvdTraits::FT | |
The scalar type.
| |
SvdTraits::Vector | |
The vector type.
| |
SvdTraits::Matrix | |
The matrix type.
|
SvdTraits vector ( size_t n); | |
initialize all the elements of the vector to zero.
|
The type Matrix has the access methods
SvdTraits matrix ( size_t n1, size_t n2); | |
initialize all the entries of the matrix to zero.
|
The concept SvdTraits has a linear solver using a singular value decomposition algorithm.
FT | traits.solve ( Matrix& M, Vector& B) | |
Solves the system MX=B (in the least square sense if M is not square) using a singular value decomposition and returns the condition number of M. The solution is stored in B. |