find array values in numpy code example
Example 1: How to select parts of a numpy array
import numpy as np
x = np.array([1,2,4,3,5,1,4,2])#create an array...
x[n]#where n is any value from the size of the array
#e.g. x[1] is 2, x[5] is 1.
Example 2: numpy arange number of elements
>>> import numpy as np
>>> np.linspace(start=0, stop=7.5, num=4)
array([ 0. , 2.5, 5. , 7.5])
>>> list(_)
[0.0, 2.5, 5.0, 7.5]