Document that JacobiSVD also handles complex matrices.

Thanks to 'Jazzdude' for noting this on IRC.
(transplanted from ed244e9c1ad18ea77596e6ece2fec3b02529d369
)
This commit is contained in:
Jitse Niesen 2012-01-26 13:16:50 +00:00
parent 2c2b7f4173
commit b9e2b4f6f5
2 changed files with 9 additions and 2 deletions

View File

@ -13,9 +13,9 @@ namespace Eigen {
*
*
*
* This module provides SVD decomposition for (currently) real matrices.
* This module provides SVD decomposition for matrices (both real and complex).
* This decomposition is accessible via the following MatrixBase method:
* - MatrixBase::svd()
* - MatrixBase::jacobiSvd()
*
* \code
* #include <Eigen/SVD>

View File

@ -708,6 +708,13 @@ struct solve_retval<JacobiSVD<_MatrixType, QRPreconditioner>, Rhs>
};
} // end namespace internal
/** \svd_module
*
* \return the singular value decomposition of \c *this computed by two-sided
* Jacobi transformations.
*
* \sa class JacobiSVD
*/
template<typename Derived>
JacobiSVD<typename MatrixBase<Derived>::PlainObject>
MatrixBase<Derived>::jacobiSvd(unsigned int computationOptions) const