aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/DenseBase.h
diff options
context:
space:
mode:
authorGravatar Hauke Heibel <hauke.heibel@gmail.com>2011-02-12 18:50:53 +0100
committerGravatar Hauke Heibel <hauke.heibel@gmail.com>2011-02-12 18:50:53 +0100
commit509ca635435fe4a8e1ddfc02318e55c0bbec5b1d (patch)
treef5e1ad02ef1f0dc6a980d377f127a3f71217aa56 /Eigen/src/Core/DenseBase.h
parentbeb03032b7f26b4c97f8c56f3b071eb53ce1126d (diff)
parent9ac68e40a0fa84419e95674c07bb773d054558c8 (diff)
Merge
Diffstat (limited to 'Eigen/src/Core/DenseBase.h')
-rw-r--r--Eigen/src/Core/DenseBase.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Eigen/src/Core/DenseBase.h b/Eigen/src/Core/DenseBase.h
index b8fa9d1cd..91465f026 100644
--- a/Eigen/src/Core/DenseBase.h
+++ b/Eigen/src/Core/DenseBase.h
@@ -185,8 +185,8 @@ template<typename Derived> class DenseBase
/** \returns the outer size.
*
* \note For a vector, this returns just 1. For a matrix (non-vector), this is the major dimension
- * with respect to the storage order, i.e., the number of columns for a column-major matrix,
- * and the number of rows for a row-major matrix. */
+ * with respect to the \ref TopicStorageOrders "storage order", i.e., the number of columns for a
+ * column-major matrix, and the number of rows for a row-major matrix. */
Index outerSize() const
{
return IsVectorAtCompileTime ? 1
@@ -196,8 +196,8 @@ template<typename Derived> class DenseBase
/** \returns the inner size.
*
* \note For a vector, this is just the size. For a matrix (non-vector), this is the minor dimension
- * with respect to the storage order, i.e., the number of rows for a column-major matrix,
- * and the number of columns for a row-major matrix. */
+ * with respect to the \ref TopicStorageOrders "storage order", i.e., the number of rows for a
+ * column-major matrix, and the number of columns for a row-major matrix. */
Index innerSize() const
{
return IsVectorAtCompileTime ? this->size()