I have a NumPy array that looks like this:
arr = np.array([100.10, 200.42, 4.14, 89.00, 34.55, 1.12])
How can I get multiple values from th
Another solution is to use np.take as specified in https://docs.scipy.org/doc/numpy-1.13.0/reference/generated/numpy.take.html
np.take
a = [4, 3, 5, 7, 6, 8] indices = [0, 1, 4] np.take(a, indices) # array([4, 3, 6])