First time here? Check out the FAQ!
answered 2011-01-17 18:59:08 +0100
Try this. does this help?
from scipy import optimize def f(z): x=z[0] y=z[1] ans = (x^2+y,y^2-x+2) return(ans) sol=optimize.broyden2(f,[0,0])