From 573bd26ae530227023b6a4600f2bfa20227da63a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Mon, 28 Jan 2019 04:29:04 +0100 Subject: [PATCH] Numpy --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6117722..86836f8 100644 --- a/README.md +++ b/README.md @@ -1575,7 +1575,7 @@ right = [[0.1, 0.6, 0.8], [0.1, 0.6, 0.8], [0.1, 0.6, 0.8]] # Shape: (3, 3) <- #### 3. If neither non-matching dimension has size 1, rise an error. ### Example -#### For each point returns index of its nearest point: `[0.1, 0.6, 0.8] => [1, 2, 1]` +#### For each point returns index of its nearest point (`[0.1, 0.6, 0.8] => [1, 2, 1]`): ```python >>> points = np.array([0.1, 0.6, 0.8])