Numpy-100 - 100 - Numpy - Exercises - With - Hint - Ipynb at Master Rougier - Numpy-100 GitHub PDF
Numpy-100 - 100 - Numpy - Exercises - With - Hint - Ipynb at Master Rougier - Numpy-100 GitHub PDF
Dismiss
Join GitHub today
GitHub is home to over 40 million developers
working together to host and review code, manage
projects, and build software together.
Sign up
numpy-100 / 100_Numpy_exercises_with_hint.ipynb
kuzand Added another solution and a hint to question 96 on the ipynb files
4 contributors
https://github.com/rougier/numpy-100/blob/master/100_Numpy_exercises_with_hint.ipynb 1/14
8/13/2019 numpy-100/100_Numpy_exercises_with_hint.ipynb at master · rougier/numpy-100 · GitHub
If you find an error or think you've a better way to solve some of them, feel free to open an issue at
https://github.com/rougier/numpy-100 (https://github.com/rougier/numpy-100)
(hint: import … as …)
In [ ]:
In [ ]:
(hint: np.zeros)
In [ ]:
In [ ]:
5. How to get the documentation of the numpy add function from the command line?
(★☆☆)
(hint: np.info)
In [ ]:
6. Create a null vector of size 10 but the fifth value which is 1 (★☆☆)
(hint: array[4])
In [ ]:
https://github.com/rougier/numpy-100/blob/master/100_Numpy_exercises_with_hint.ipynb 2/14
8/13/2019 numpy-100/100_Numpy_exercises_with_hint.ipynb at master · rougier/numpy-100 · GitHub
(hint: np.arange)
In [ ]:
(hint: array[::-1])
In [ ]:
(hint: reshape)
In [ ]:
(hint: np.nonzero)
In [ ]:
(hint: np.eye)
In [ ]:
(hint: np.random.random)
In [ ]:
13. Create a 10x10 array with random values and find the minimum and maximum values
(★☆☆)
In [ ]:
14. Create a random vector of size 30 and find the mean value (★☆☆)
(hint: mean)
In [ ]:
https://github.com/rougier/numpy-100/blob/master/100_Numpy_exercises_with_hint.ipynb 3/14
8/13/2019 numpy-100/100_Numpy_exercises_with_hint.ipynb at master · rougier/numpy-100 · GitHub
In [ ]:
16. How to add a border (filled with 0's) around an existing array? (★☆☆)
(hint: np.pad)
In [ ]:
0 * np.nan
np.nan == np.nan
np.inf > np.nan
np.nan - np.nan
np.nan in set([np.nan])
0.3 == 3 * 0.1
In [ ]:
18. Create a 5x5 matrix with values 1,2,3,4 just below the diagonal (★☆☆)
(hint: np.diag)
In [ ]:
19. Create a 8x8 matrix and fill it with a checkerboard pattern (★☆☆)
(hint: array[::2])
In [ ]:
20. Consider a (6,7,8) shape array, what is the index (x,y,z) of the 100th element?
(hint: np.unravel_index)
In [ ]:
21. Create a checkerboard 8x8 matrix using the tile function (★☆☆)
(hint: np.tile)
https://github.com/rougier/numpy-100/blob/master/100_Numpy_exercises_with_hint.ipynb 4/14
8/13/2019 numpy-100/100_Numpy_exercises_with_hint.ipynb at master · rougier/numpy-100 · GitHub
(hint: np.tile)
In [ ]:
In [ ]:
23. Create a custom dtype that describes a color as four unsigned bytes (RGBA)
(★☆☆)
(hint: np.dtype)
In [ ]:
24. Multiply a 5x3 matrix by a 3x2 matrix (real matrix product) (★☆☆)
(hint: np.dot | @)
In [ ]:
25. Given a 1D array, negate all elements which are between 3 and 8, in place.
(★☆☆)
In [ ]:
(hint: np.sum)
print(sum(range(5),-1))
from numpy import *
print(sum(range(5),-1))
In [ ]:
27. Consider an integer vector Z, which of these expressions are legal? (★☆☆)
Z**Z
2 << Z >> 2
Z <- Z
https://github.com/rougier/numpy-100/blob/master/100_Numpy_exercises_with_hint.ipynb 5/14
8/13/2019 numpy-100/100_Numpy_exercises_with_hint.ipynb at master · rougier/numpy-100 · GitHub
Z < Z
1j*Z
Z/1/1
Z<Z>Z
In [ ]:
np.array(0) / np.array(0)
np.array(0) // np.array(0)
np.array([np.nan]).astype(int).astype(float)
In [ ]:
In [ ]:
(hint: np.intersect1d)
In [ ]:
In [ ]:
np.sqrt(-1) == np.emath.sqrt(-1)
In [ ]:
33. How to get the dates of yesterday, today and tomorrow? (★☆☆)
https://github.com/rougier/numpy-100/blob/master/100_Numpy_exercises_with_hint.ipynb 6/14
8/13/2019 numpy-100/100_Numpy_exercises_with_hint.ipynb at master · rougier/numpy-100 · GitHub
In [ ]:
34. How to get all the dates corresponding to the month of July 2016? (★★☆)
(hint: np.arange(dtype=datetime64['D']))
In [ ]:
In [ ]:
36. Extract the integer part of a random array using 5 different methods (★★☆)
In [ ]:
37. Create a 5x5 matrix with row values ranging from 0 to 4 (★★☆)
(hint: np.arange)
In [ ]:
38. Consider a generator function that generates 10 integers and use it to build an array
(★☆☆)
(hint: np.fromiter)
In [ ]:
39. Create a vector of size 10 with values ranging from 0 to 1, both excluded
(★★☆)
(hint: np.linspace)
In [ ]:
(hint: sort)
In [ ]:
(hint: np.add.reduce)
In [ ]:
42. Consider two random array A and B, check if they are equal (★★☆)
In [ ]:
(hint: flags.writeable)
In [ ]:
44. Consider a random 10x2 matrix representing cartesian coordinates, convert them to
polar coordinates (★★☆)
In [ ]:
45. Create random vector of size 10 and replace the maximum value by 0 (★★☆)
(hint: argmax)
In [ ]:
46. Create a structured array with x and y coordinates covering the [0,1]x[0,1] area
(★★☆)
(hint: np.meshgrid)
In [ ]:
47. Given two arrays, X and Y, construct the Cauchy matrix C (Cij =1/(xi - yj))
(hint: np.subtract.outer)
In [ ]:
48. Print the minimum and maximum representable value for each numpy scalar type
(★★☆)
In [ ]:
https://github.com/rougier/numpy-100/blob/master/100_Numpy_exercises_with_hint.ipynb 8/14
8/13/2019 numpy-100/100_Numpy_exercises_with_hint.ipynb at master · rougier/numpy-100 · GitHub
(hint: np.set_printoptions)
In [ ]:
50. How to find the closest value (to a given scalar) in a vector? (★★☆)
(hint: argmin)
In [ ]:
51. Create a structured array representing a position (x,y) and a color (r,g,b)
(★★☆)
(hint: dtype)
In [ ]:
52. Consider a random vector with shape (100,2) representing coordinates, find point by
point distances (★★☆)
In [ ]:
53. How to convert a float (32 bits) array into an integer (32 bits) in place?
(hint: astype(copy=False))
In [ ]:
(hint: np.genfromtxt)
1, 2, 3, 4, 5
6, , , 7, 8
, , 9,10,11
In [ ]:
https://github.com/rougier/numpy-100/blob/master/100_Numpy_exercises_with_hint.ipynb 9/14
8/13/2019 numpy-100/100_Numpy_exercises_with_hint.ipynb at master · rougier/numpy-100 · GitHub
In [ ]:
In [ ]:
In [ ]:
(hint: mean(axis=,keepdims=))
In [ ]:
(hint: argsort)
In [ ]:
(hint: any, ~)
In [ ]:
61. Find the nearest value from a given value in an array (★★☆)
In [ ]:
62. Considering two arrays with shape (1,3) and (3,1), how to compute their sum using an
iterator? (★★☆)
(hint: np.nditer)
In [ ]:
In [ ]:
64. Consider a given vector, how to add 1 to each element indexed by a second vector (be
careful with repeated indices)? (★★★)
In [ ]:
65. How to accumulate elements of a vector (X) to an array (F) based on an index list (I)?
(★★★)
(hint: np.bincount)
In [ ]:
66. Considering a (w,h,3) image of (dtype=ubyte), compute the number of unique colors
(★★★)
(hint: np.unique)
In [ ]:
67. Considering a four dimensions array, how to get sum over the last two axis at once?
(★★★)
(hint: sum(axis=(-2,-1)))
In [ ]:
(hint: np.bincount)
In [ ]:
(hint: np.diag)
In [ ]:
70. Consider the vector [1, 2, 3, 4, 5], how to build a new vector with 3 consecutive zeros
interleaved between each value? (★★★)
(hint: array[::4])
In [ ]:
https://github.com/rougier/numpy-100/blob/master/100_Numpy_exercises_with_hint.ipynb 11/14
8/13/2019 numpy-100/100_Numpy_exercises_with_hint.ipynb at master · rougier/numpy-100 · GitHub
In [ ]:
71. Consider an array of dimension (5,5,3), how to mulitply it by an array with dimensions
(5,5)? (★★★)
In [ ]:
In [ ]:
73. Consider a set of 10 triplets describing 10 triangles (with shared vertices), find the set of
unique line segments composing all the triangles (★★★)
In [ ]:
74. Given an array C that is a bincount, how to produce an array A such that np.bincount(A)
== C? (★★★)
(hint: np.repeat)
In [ ]:
75. How to compute averages using a sliding window over an array? (★★★)
(hint: np.cumsum)
In [ ]:
76. Consider a one-dimensional array Z, build a two-dimensional array whose first row is
(Z[0],Z[1],Z[2]) and each subsequent row is shifted by 1 (last row should be (Z[-3],Z[-2],Z[-1])
(★★★)
In [ ]:
77. How to negate a boolean, or to change the sign of a float inplace? (★★★)
In [ ]:
https://github.com/rougier/numpy-100/blob/master/100_Numpy_exercises_with_hint.ipynb 12/14
8/13/2019 numpy-100/100_Numpy_exercises_with_hint.ipynb at master · rougier/numpy-100 · GitHub
78. Consider 2 sets of points P0,P1 describing lines (2d) and a point p, how to compute
distance from p to each line i (P0[i],P1[i])? (★★★)
In [ ]:
79. Consider 2 sets of points P0,P1 describing lines (2d) and a set of points P, how to
compute distance from each point j (P[j]) to each line i (P0[i],P1[i])? (★★★)
In [ ]:
80. Consider an arbitrary array, write a function that extract a subpart with a fixed shape and
centered on a given element (pad with a fill value when necessary) (★★★)
In [ ]:
(hint: stride_tricks.as_strided)
In [ ]:
In [ ]:
In [ ]:
84. Extract all the contiguous 3x3 blocks from a random 10x10 matrix (★★★)
(hint: stride_tricks.as_strided)
In [ ]:
In [ ]:
https://github.com/rougier/numpy-100/blob/master/100_Numpy_exercises_with_hint.ipynb 13/14
8/13/2019 numpy-100/100_Numpy_exercises_with_hint.ipynb at master · rougier/numpy-100 · GitHub
86. Consider a set of p matrices wich shape (n,n) and a set of p vectors with shape (n,1). How
to compute the sum of of the p matrix products at once? (result has shape (n,1))
(★★★)
(hint: np.tensordot)
In [ ]:
87. Consider a 16x16 array, how to get the block-sum (block size is 4x4)? (★★★)
(hint: np.add.reduceat)
In [ ]:
88. How to implement the Game of Life using numpy arrays? (★★★)
https://github.com/rougier/numpy-100/blob/master/100_Numpy_exercises_with_hint.ipynb 14/14