aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/Array
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-02-12 07:55:35 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-02-12 07:55:35 +0000
commitdc97d483fd0cf4575d7b7faca86bc45539539f49 (patch)
treea4e0cc9eb74ca1e8ec2940dda2b9a6c032047c4d /Eigen/Array
parentdeb625470216fd594cafee301c083c195465a63c (diff)
update of the Array module doc
Diffstat (limited to 'Eigen/Array')
-rw-r--r--Eigen/Array8
1 files changed, 6 insertions, 2 deletions
diff --git a/Eigen/Array b/Eigen/Array
index b2e4d36fc..eb61e7152 100644
--- a/Eigen/Array
+++ b/Eigen/Array
@@ -16,8 +16,12 @@ namespace Eigen {
* - sin, cos, sqrt, pow, exp, log, square, cube, inverse (reciprocal).
*
* This module also provides various MatrixBase methods, including:
- * - \ref MatrixBase::all() "all", \ref MatrixBase::any() "any",
- * - \ref MatrixBase::Random() "random matrix initialization"
+ * - boolean reductions: \ref MatrixBase::all() "all", \ref MatrixBase::any() "any", \ref MatrixBase::count() "count",
+ * - \ref MatrixBase::Random() "random matrix initialization",
+ * - a \ref MatrixBase::select() "select" function mimicking the trivariate ?: operator,
+ * - \ref MatrixBase::colwise() "column-wise" and \ref MatrixBase::rowwise() "row-wise" reductions,
+ * - \ref MatrixBase::reverse() "matrix reverse",
+ * - \ref MatrixBase::lpNorm() "generic matrix norm".
*
* \code
* #include <Eigen/Array>