from scipy import *
def test_arg((x,y),(a,b)):
 return (x-a)**2 + (y-b)**2

min = optimize.fmin_powell(test_arg,(1.0,2.0), ((5.0,6.0),))
