Suppose, I have the following data-set as numpy array:
import numpy as np
x = np.array([0, 5, 10, 15, 20, 25, 30])
y = np.array([0, 0.13157895, 0.31578947, 0.40789474, 0.46052632, 0.5, 0.53947368])
and I want to read only values corresponding to x = 20, 25, 30. How can I read that using numpy ?