コード例 #1
0
ファイル: poly.py プロジェクト: juhnowski/FishingRod
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
ファイル: poly_test.py プロジェクト: juhnowski/FishingRod
 def test_poly_eval(self):
     c = Numeric.ones((3,))
     x = 2
     assert(poly.poly_eval(c,x) == 7.0)