I had to use contour graphs to create graphs of a set of inconveniently defined hyperbolic functions. This works, and it shows a series of them with added noise (this is a TDOA passive RF geolocation problem for those familiar with such things).
Since my python program knows (x, y) goals, I want to try all the different hyperbolas that I draw around this point and generate an error ellipse. If I can make the Matplotlib contour function return the points of each contour line as it is drawn, I can process the rest of the calculations. So...
Can the Matplotlib contour function return all values (x, y) for a particular contour line, for example, with f (x, y) = 0?
source
share