def legline(off, scl): from numpy.polynomial.legendre import legline return legline(off, scl)
def test_legline(self) : assert_equal(leg.legline(3,4), [3, 4])
def legline(off, scl) : from numpy.polynomial.legendre import legline return legline(off, scl)
def test_legline(self) : assert_equal(leg.legline(3, 4), [3, 4])
def test_legline_zeroscl(self): assert_equal(leg.legline(3, 0), [3])