Skip to content

Commit a58abf8

Browse files
committed
Numpy
1 parent 2c432c7 commit a58abf8

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1731,15 +1731,13 @@ indexes = <array>.argmin(<axis>)
17311731
* **Axis is an index of dimension, that gets collapsed.**
17321732

17331733
### Indexing
1734-
#### Basic:
17351734
```bash
17361735
<el> = <2d_array>[0, 0] # First element.
17371736
<1d_view> = <2d_array>[0] # First row.
17381737
<1d_view> = <2d_array>[:, 0] # First column. Also [..., 0].
17391738
<3d_view> = <2d_array>[None, :, :] # Expanded by dimension of size 1.
17401739
```
17411740

1742-
#### Advanced:
17431741
```bash
17441742
<1d_array> = <2d_array>[<1d_row_indexes>, <1d_column_indexes>]
17451743
<2d_array> = <2d_array>[<2d_row_indexes>, <2d_column_indexes>]

0 commit comments

Comments
 (0)