Edit: More specifically, I'm looking for an practical way to plot the shape of the zeros of a scalar function with 2 variables. So the values only need to precise up to the resolution of the 2D mesh grid I choose. e.g. f(x,y) = sqrt(x^2 + y^2) - 4 should give me a circle.
The problem is that fsolve requires a vector function, so
from scipy.optimize import fsolve
def a(x): return sin(x[0]) + cos(x[1])
nodes = fsolve(a,(.1,.2))
won't work. Is there any workaround? e.g. def a(x): return [sin(x[0]) + cos(x[1]),0]
but it only outputs 1 solution (array([-1.37079633,0.2]) instead of all the possible zeros).
fsolveuses non-linear methods like semi-Newton methods, and to get multiple zeros you literally have to use multiple guesses. And even then, there's never a guarantee it can converge to all the relevant ones for your purposes. – EMS Apr 9 '12 at 21:05