aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-08-20 13:07:46 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-08-20 13:07:46 +0000
commit8afaeb4ad5fbcde1fb25ab5c8f9a9d120db4b13b (patch)
treefeecc82c87cfe6534bcc0e2039bdc48578a18aec /Eigen
parentdb8fbf2b397f632f0ccc1260b7e2a50eb6d6ef82 (diff)
doc fixes, and extended Basic Linear Algebra and Reductions sections
Diffstat (limited to 'Eigen')
-rw-r--r--Eigen/Array2
-rw-r--r--Eigen/src/Core/MapBase.h2
-rw-r--r--Eigen/src/Geometry/OrthoMethods.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/Eigen/Array b/Eigen/Array
index d2a6eca0e..74d8fa888 100644
--- a/Eigen/Array
+++ b/Eigen/Array
@@ -11,7 +11,7 @@ namespace Eigen {
* (accessible from MatrixBase::cwise()), including:
* - matrix-scalar sum,
* - coeff-wise comparison operators,
- * - sin, cos, sqrt, pow, exp, log, square, cube, reciprocal.
+ * - sin, cos, sqrt, pow, exp, log, square, cube, inverse (reciprocal).
*
* This module also provides various MatrixBase methods, including:
* - \ref MatrixBase::all() "all", \ref MatrixBase::any() "any",
diff --git a/Eigen/src/Core/MapBase.h b/Eigen/src/Core/MapBase.h
index 4f61d1529..58afd68ab 100644
--- a/Eigen/src/Core/MapBase.h
+++ b/Eigen/src/Core/MapBase.h
@@ -64,7 +64,7 @@ template<typename Derived> class MapBase
inline int stride() const { return derived().stride(); }
- /** \Returns an expression equivalent to \c *this but having the \c PacketAccess constant
+ /** \returns an expression equivalent to \c *this but having the \c PacketAccess constant
* set to \c ForceAligned. Must be reimplemented by the derived class. */
AlignedDerivedType forceAligned() { return derived().forceAligned(); }
diff --git a/Eigen/src/Geometry/OrthoMethods.h b/Eigen/src/Geometry/OrthoMethods.h
index b826a96fb..046ca0c88 100644
--- a/Eigen/src/Geometry/OrthoMethods.h
+++ b/Eigen/src/Geometry/OrthoMethods.h
@@ -96,7 +96,7 @@ struct ei_someOrthogonal_selector<Derived,2>
/** \returns an orthogonal vector of \c *this
*
* The size of \c *this must be at least 2. If the size is exactly 2,
- * then the returned vector is a counter clock wise rotation of \c *this, \ie (-y,x).
+ * then the returned vector is a counter clock wise rotation of \c *this, i.e., (-y,x).
*
* \sa cross()
*/