Browse Source

Numpy

pull/10/head
Jure Šorn 5 years ago
parent
commit
c94d88618d
1 changed files with 2 additions and 2 deletions
  1. 4
      README.md

4
README.md

@ -1744,13 +1744,13 @@ import numpy as np
```
#### Integer array indexing:
**If row and column indexes differ in shape, they are combined with broadcasting.**
```bash
<1d_array> = <2d_array>[<1d_row_indexes>, <1d_column_indexes>]
<2d_array> = <2d_array>[<2d_row_indexes>, <2d_column_indexes>]
```
* **If row and column indexes differ in shape, they are combined with broadcasting.**
#### Boolean array indexing:
```bash
<2d_bool_array> = <2d_array> > 0

Loading…
Cancel
Save