From 275d8e4a29cb335aba68ff5f6884c3513b20276e Mon Sep 17 00:00:00 2001 From: "Nicolas P. Rougier" Date: Wed, 9 Mar 2016 07:02:08 +0100 Subject: [PATCH] Remove duplicate, close #8 --- README.rst | 7 ------- 1 file changed, 7 deletions(-) diff --git a/README.rst b/README.rst index ee43e9c..1c20f57 100644 --- a/README.rst +++ b/README.rst @@ -313,13 +313,6 @@ Thanks to Michiaki Ariga, there is now a Z = np.zeros((25,25)) print(Z) -#. How to print all the values of an array ? (★★☆) - - .. code-block:: python - - np.set_printoptions(threshold=np.nan) - Z = np.zeros((25,25)) - print(Z) #. How to find the closest value (to a given scalar) in an array ? (★★☆)