aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/SVD
diff options
context:
space:
mode:
authorGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2012-01-26 13:16:50 +0000
committerGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2012-01-26 13:16:50 +0000
commited244e9c1ad18ea77596e6ece2fec3b02529d369 (patch)
tree14c30516bdeefc12e74b538d8a2fd2f5b8a63940 /Eigen/SVD
parent0251bb6c1d2da1d4a685bc118cb5bc774c9dbc30 (diff)
Document that JacobiSVD also handles complex matrices.
Thanks to 'Jazzdude' for noting this on IRC.
Diffstat (limited to 'Eigen/SVD')
-rw-r--r--Eigen/SVD4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/SVD b/Eigen/SVD
index 764811ecc..e5119dfc6 100644
--- a/Eigen/SVD
+++ b/Eigen/SVD
@@ -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>