Public Member Functions | |
HV_SVD () | |
template<class Accessor> | |
HV_SVD (const FixedMatrix< Rows, Cols, Accessor > &m) | |
template<class Accessor> | |
void | compute (const FixedMatrix< Rows, Cols, Accessor > &m) |
Matrix< Rows, Inter, RowMajor > & | get_U () |
Vector< Inter > & | get_diagonal () |
Matrix< Inter, Cols, RowMajor > & | get_VT () |
HV_SVD () | |
template<class Accessor> | |
HV_SVD (const FixedMatrix< Rows, Cols, Accessor > &m) | |
template<class Accessor> | |
void | compute (const FixedMatrix< Rows, Cols, Accessor > &m) |
Matrix< Rows, Inter, RowMajor > & | get_U () |
Vector< Inter > & | get_diagonal () |
Matrix< Inter, Cols, RowMajor > & | get_VT () |
Static Public Attributes | |
static const int | Inter = (Rows>Cols?Cols:Rows) |
Protected Attributes | |
Matrix< Rows, Inter > | my_U |
Vector< Inter > | my_diagonal |
Matrix< Inter, Cols > | my_VT |
Matrix< Rows, Inter > | my_U |
Vector< Inter > | my_diagonal |
Matrix< Inter, Cols > | my_VT |
Definition at line 83 of file SVD.h.