I want to plot a graph and on the top of it a contour. And then obtain the points where the contour lines intersect with graph line. I am trying something like this
plt.hold(True)
plt.contour(X, Y, Z)
plt.plot(tp,cp)
But I couldn't plot them. Please help me in getting the plots done.