aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2010-01-06 17:43:11 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2010-01-06 17:43:11 +0100
commitc24de5b413c0ea564a6324501094c00612aba758 (patch)
tree2271771ec15c0fd9d854396f66f65959733d5d0b
parent2fbe8da7a17a06166c7b9333bf214f3bf2387b9f (diff)
typo
-rw-r--r--doc/A05_PortingFrom2To3.dox2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/A05_PortingFrom2To3.dox b/doc/A05_PortingFrom2To3.dox
index a1bf0681d..e2dac4525 100644
--- a/doc/A05_PortingFrom2To3.dox
+++ b/doc/A05_PortingFrom2To3.dox
@@ -42,7 +42,7 @@ vec.tail<length>()
In Eigen2, coefficient wise operations which have no proper mathematical definiton (as a coeff wise product)
were achied using the .cwise() prefix, e.g.:
-\code a.cwise() * b \code
+\code a.cwise() * b \endcode
In Eigen3 this .cwise() prefix has been supersed by a new kind of matrix type called
Array for which all operations are performed coefficient wise. You can easily view a matrix as an array and vice versa using
the MatrixBase::array() and ArrayBase::matrix() functions respectively. Here is an example: