#include <matharraysvd.hpp>

| Public Types | |
| typedef Eigen::Matrix< Scalar, Eigen::Dynamic, Eigen::Dynamic, Eigen::ColMajor > | Base | 
| typedef int | TIndex | 
| typedef Scalar | TScalar | 
| Public Member Functions | |
| MatrixType | MatrixU () const | 
| returns matrix U | |
| MatrixType | MatrixV () const | 
| returns matrix V | |
| Base & | object () | 
| returns the matrix object this class refers to | |
| const Base & | object () const | 
| returns the matrix object this class refers to | |
| MatrixType | SingularValues () const | 
| returns singular values as vector | |
| MatrixType | Solve (const MathArrayBase< TScalar > &n) const | 
| returns this->inverse*n using a temporary LU decomposition which will be computed in place | |
| Eigen::SVD< Base > & | svd () | 
| returns the lu object this class refers to | |
| const Eigen::SVD< Base > & | svd () const | 
| returns the lu object this class refers to | |
| SVDBase () | |
| a default constructor used for SWIG - it should never be called when using this object, else one will cause a segfault! | |
| SVDBase (MatrixType &_object) | |
| constructor | |
| virtual | ~SVDBase () | 
| destructor | |
| Protected Attributes | |
| Base * | m_object | 
| the matrix object this class is operating on | |
| Eigen::SVD< Base > | m_svd | 
| the LU object | |
 1.5.6
 1.5.6