| 1 | initial version |
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])
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.