aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/TutorialReductionsVisitorsBroadcasting.dox
diff options
context:
space:
mode:
authorGravatar Benjamin Chretien <chretien@lirmm.fr>2014-04-17 18:49:23 +0200
committerGravatar Benjamin Chretien <chretien@lirmm.fr>2014-04-17 18:49:23 +0200
commite5d0cb54a5f2a2200a4656d993c82a80f159a7c4 (patch)
tree73beab7d0f9a5c1678eb6bf8fe6889a3e4b67f43 /doc/TutorialReductionsVisitorsBroadcasting.dox
parente0dbb68c2f17f3c8c6accc7dc0b2b8d544e2eebc (diff)
Fix typo in Reductions tutorial.
Diffstat (limited to 'doc/TutorialReductionsVisitorsBroadcasting.dox')
-rw-r--r--doc/TutorialReductionsVisitorsBroadcasting.dox2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/TutorialReductionsVisitorsBroadcasting.dox b/doc/TutorialReductionsVisitorsBroadcasting.dox
index 992cf6f34..eb6787dbc 100644
--- a/doc/TutorialReductionsVisitorsBroadcasting.dox
+++ b/doc/TutorialReductionsVisitorsBroadcasting.dox
@@ -32,7 +32,7 @@ Eigen also provides the \link MatrixBase::norm() norm() \endlink method, which r
These operations can also operate on matrices; in that case, a n-by-p matrix is seen as a vector of size (n*p), so for example the \link MatrixBase::norm() norm() \endlink method returns the "Frobenius" or "Hilbert-Schmidt" norm. We refrain from speaking of the \f$\ell^2\f$ norm of a matrix because that can mean different things.
-If you want other \f$\ell^p\f$ norms, use the \link MatrixBase::lpNorm() lpNnorm<p>() \endlink method. The template parameter \a p can take the special value \a Infinity if you want the \f$\ell^\infty\f$ norm, which is the maximum of the absolute values of the coefficients.
+If you want other \f$\ell^p\f$ norms, use the \link MatrixBase::lpNorm() lpNorm<p>() \endlink method. The template parameter \a p can take the special value \a Infinity if you want the \f$\ell^\infty\f$ norm, which is the maximum of the absolute values of the coefficients.
The following example demonstrates these methods.