예제 #1
0
def test_poly_eval():
    c = numx.ones((3,))
    x = 2
    poly.poly_eval(c,x)
예제 #2
0
파일: poly_test.py 프로젝트: clinssen/pygsl
 def test_poly_eval(self):
     c = Numeric.ones((3,))
     x = 2
     assert(poly.poly_eval(c,x) == 7.0)
예제 #3
0
def test_poly_eval():
    c = numx.ones((3, ))
    x = 2
    poly.poly_eval(c, x)
예제 #4
0
 def test_poly_eval(self):
     c = Numeric.ones((3,))
     x = 2
     assert(poly.poly_eval(c,x) == 7.0)