What is the difference between np.linspace and np.arange?
np.linspace allows you to define how many values you get including the specified min and max value. It infers the stepsize: >>> np.linspace(0,1,11) array([0. , 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1. ]) np.arange allows you to define the stepsize and infers the number of steps(the number of values you get). >>> … Read more