aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/QuickReference.dox
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2018-12-05 17:17:23 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2018-12-05 17:17:23 +0100
commitacc3459a49707c92ee96a710e05d7e18e144c780 (patch)
tree7f1b40cf2dc1da9a446e36dc029c4037e6b2503e /doc/QuickReference.dox
parente2e897298a670ea8024c8bb76894c45a9941cc1f (diff)
Add help messages in the quick ref/ascii docs regarding slicing, indexing, and reshaping.
Diffstat (limited to 'doc/QuickReference.dox')
-rw-r--r--doc/QuickReference.dox11
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/QuickReference.dox b/doc/QuickReference.dox
index 18c90a2a9..9c8e6fb4a 100644
--- a/doc/QuickReference.dox
+++ b/doc/QuickReference.dox
@@ -529,6 +529,12 @@ if((array1 < array2).any()) ... // if there exist a pair i,j such that array1(i,
<a href="#" class="top">top</a>\section QuickRef_Blocks Sub-matrices
+<div class="warningbox">
+<strong>PLEASE HELP US IMPROVING THIS SECTION.</strong>
+%Eigen 3.4 supports a much improved API for sub-matrices, including,
+slicing and indexing from arrays: \ref TutorialSlicingIndexing
+</div>
+
Read-write access to a \link DenseBase::col(Index) column \endlink
or a \link DenseBase::row(Index) row \endlink of a matrix (or array):
\code
@@ -584,6 +590,11 @@ Read-write access to sub-matrices:</td></tr>
<a href="#" class="top">top</a>\section QuickRef_Misc Miscellaneous operations
+<div class="warningbox">
+<strong>PLEASE HELP US IMPROVING THIS SECTION.</strong>
+%Eigen 3.4 supports a new API for reshaping: \ref TutorialReshape
+</div>
+
\subsection QuickRef_Reverse Reverse
Vectors, rows, and/or columns of a matrix can be reversed (see DenseBase::reverse(), DenseBase::reverseInPlace(), VectorwiseOp::reverse()).
\code