What is the purpose of np.meshgrid
? I know it creates some kind of grid of coordinates for plotting, but I can't see the direct benefit of it.
The official documentation gives the following example, but its output doesn't make sense to me:
x = np.arange(-5, 5, 1)
y = np.arange(-5, 5, 1)
xx, yy = np.meshgrid(x, y, sparse=True)
z = np.sin(xx**2 + yy**2) / (xx**2 + yy**2)
h = plt.contourf(x,y,z)