aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/IndexedView.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2017-01-10 22:58:58 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2017-01-10 22:58:58 +0100
commit1b5570988bd2d6f783874e2d4fd6b7be45c8ac3c (patch)
tree6fc5b18af801ea127f8373fdcd64de795bec84f9 /Eigen/src/Core/IndexedView.h
parent17eac60446650dc31bde7156a4febe504ab347b7 (diff)
Add doc to seq, seqN, ArithmeticSequence, operator(), etc.
Diffstat (limited to 'Eigen/src/Core/IndexedView.h')
-rw-r--r--Eigen/src/Core/IndexedView.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/Core/IndexedView.h b/Eigen/src/Core/IndexedView.h
index 269882e78..781cebd4e 100644
--- a/Eigen/src/Core/IndexedView.h
+++ b/Eigen/src/Core/IndexedView.h
@@ -85,7 +85,7 @@ class IndexedViewImpl;
* - std::vector<int>
* - std::valarray<int>
* - std::array<int>
- * - c++ arrays: int[N]
+ * - Plain C arrays: int[N]
* - Eigen::ArrayXi
* - decltype(ArrayXi::LinSpaced(...))
* - Any view/expressions of the previous types
@@ -94,7 +94,7 @@ class IndexedViewImpl;
* - Eigen::IntAsArray (helper for single index)
* - etc.
*
- * In typical usages of %Eigen, this class should never be used directly. It is the return type of DenseBase::operator().
+ * In typical usages of %Eigen, this class should never be used directly. It is the return type of DenseBase::operator()(const RowIndices&, const ColIndices&).
*
* \sa class Block
*/