From b83225edfb0efbfa63f76bef71f17dc39181ef70 Mon Sep 17 00:00:00 2001 From: Carlos Becker Date: Wed, 30 Jun 2010 15:08:25 +0100 Subject: [PATCH] Fixed small typo in arithmetic tutorial --- doc/C02_TutorialMatrixArithmetic.dox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/C02_TutorialMatrixArithmetic.dox b/doc/C02_TutorialMatrixArithmetic.dox index 7e5615d6a..e566fe451 100644 --- a/doc/C02_TutorialMatrixArithmetic.dox +++ b/doc/C02_TutorialMatrixArithmetic.dox @@ -143,7 +143,7 @@ When using complex numbers, Eigen's dot product is conjugate-linear in the first second variable. \section TutorialArithmeticRedux Basic arithmetic reduction operations -Eigen also provides some reduction operations to reduce a given matrix or vector to a single value such as the sum (a.sum()), product (a.sum()), or the maximum (a.maxCoeff()) and minimum (a.minCoeff()) of all its coefficients. +Eigen also provides some reduction operations to reduce a given matrix or vector to a single value such as the sum (a.sum()), product (a.prod()), or the maximum (a.maxCoeff()) and minimum (a.minCoeff()) of all its coefficients.
Example: \include tut_arithmetic_redux_basic.cpp