aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/QuickReference.dox
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2010-06-28 13:30:10 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2010-06-28 13:30:10 +0200
commitdbefd7aafbe1f245ac9edc3c88444a19ef2d7367 (patch)
tree6a999f898458f1d2a961260517dfc016d35fcd80 /doc/QuickReference.dox
parent768bdd08c86bbdb7d577859bdf11687a6f57bbc3 (diff)
* update redux section
* fix output precision to 3 for the snippets
Diffstat (limited to 'doc/QuickReference.dox')
-rw-r--r--doc/QuickReference.dox4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/QuickReference.dox b/doc/QuickReference.dox
index fd08a4be0..e24c4f00f 100644
--- a/doc/QuickReference.dox
+++ b/doc/QuickReference.dox
@@ -35,6 +35,7 @@ namespace Eigen {
<a href="#" class="top">top</a>
\section QuickRef_Types Array, matrix and vector types
+
\b Recall: Eigen provides two kinds of dense objects: mathematical matrices and vectors which are both represented by the template class Matrix, and general 1D and 2D arrays represented by the template class Array:
\code
typedef Matrix<Scalar, RowsAtCompileTime, ColsAtCompileTime, Options> MyMatrixType;
@@ -87,7 +88,6 @@ In the rest of this document we will use the following symbols to emphasize the
\li <a name="matrixonly"><a/>\matrixworld linear algebra matrix and vector only
\li <a name="arrayonly"><a/>\arrayworld array objects only
-
\subsection QuickRef_Basics Basic matrix manipulation
<table class="tutorial_code">
@@ -371,7 +371,7 @@ Coefficient-wise operators for matrices and vectors:
<tr><td>\code
mat1.cwiseMin(mat2)
mat1.cwiseMax(mat2)
-mat1.cwiseAbs2()
+mat1.cwiseAbs2()
mat1.cwiseAbs()
mat1.cwiseSqrt()
mat1.cwiseProduct(mat2)