From c94d88618d840d4e7ea8f1138bb2863450395b00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Tue, 29 Jan 2019 20:10:27 +0100 Subject: [PATCH] Numpy --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8f44cf4..f8f42de 100644 --- a/README.md +++ b/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