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