From dc97d483fd0cf4575d7b7faca86bc45539539f49 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Thu, 12 Feb 2009 07:55:35 +0000 Subject: [PATCH] update of the Array module doc --- Eigen/Array | 8 ++++++-- 1 file 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