def test_poly_eval(): c = numx.ones((3,)) x = 2 poly.poly_eval(c,x)
def test_poly_eval(self): c = Numeric.ones((3,)) x = 2 assert(poly.poly_eval(c,x) == 7.0)
def test_poly_eval(): c = numx.ones((3, )) x = 2 poly.poly_eval(c, x)