From c24de5b413c0ea564a6324501094c00612aba758 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Wed, 6 Jan 2010 17:43:11 +0100 Subject: [PATCH] typo --- doc/A05_PortingFrom2To3.dox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() 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: