diff options
author | Matti Picus <matti.picus@gmail.com> | 2020-09-14 18:55:12 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-14 17:55:12 +0200 |
commit | 4cdd3606160de923fb4054cf93f4ea02a356def0 (patch) | |
tree | c65eeb998a3292b6ca95bfdf1302f904fee2420d /doc/source/reference/arrays.indexing.rst | |
parent | 3f5097baec71b4c6b287534cc938a16b1f9fc474 (diff) | |
download | numpy-4cdd3606160de923fb4054cf93f4ea02a356def0.tar.gz |
DOC: add new glossary terms (#17263)
* DOC: add new glossary terms
* DOC: link to python Ellipsis
* DOC: fixes from review
* DOC: fixes from review
* DOC: remove glossary items that belong to python
Diffstat (limited to 'doc/source/reference/arrays.indexing.rst')
-rw-r--r-- | doc/source/reference/arrays.indexing.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/source/reference/arrays.indexing.rst b/doc/source/reference/arrays.indexing.rst index 3e600b7c4..180a79dae 100644 --- a/doc/source/reference/arrays.indexing.rst +++ b/doc/source/reference/arrays.indexing.rst @@ -198,6 +198,7 @@ concepts to remember include: create an axis of length one. :const:`newaxis` is an alias for 'None', and 'None' can be used in place of this with the same result. +.. _advanced-indexing: Advanced Indexing ----------------- @@ -304,6 +305,8 @@ understood with an example. most important thing to remember about indexing with multiple advanced indexes. +.. _combining-advanced-and-basic-indexing: + Combining advanced and basic indexing """"""""""""""""""""""""""""""""""""" |