We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c432c7 commit a58abf8Copy full SHA for a58abf8
README.md
@@ -1731,15 +1731,13 @@ indexes = <array>.argmin(<axis>)
1731
* **Axis is an index of dimension, that gets collapsed.**
1732
1733
### Indexing
1734
-#### Basic:
1735
```bash
1736
<el> = <2d_array>[0, 0] # First element.
1737
<1d_view> = <2d_array>[0] # First row.
1738
<1d_view> = <2d_array>[:, 0] # First column. Also [..., 0].
1739
<3d_view> = <2d_array>[None, :, :] # Expanded by dimension of size 1.
1740
```
1741
1742
-#### Advanced:
1743
1744
<1d_array> = <2d_array>[<1d_row_indexes>, <1d_column_indexes>]
1745
<2d_array> = <2d_array>[<2d_row_indexes>, <2d_column_indexes>]
0 commit comments