def test_c_roots(): weightf = orth.chebyc(5).weight_func verify_gauss_quad(orth.c_roots, orth.eval_chebyc, weightf, -2., 2., 5) verify_gauss_quad(orth.c_roots, orth.eval_chebyc, weightf, -2., 2., 25) verify_gauss_quad(orth.c_roots, orth.eval_chebyc, weightf, -2., 2., 100) x, w = orth.c_roots(5, False) y, v, m = orth.c_roots(5, True) assert_allclose(x, y, 1e-14, 1e-14) assert_allclose(w, v, 1e-14, 1e-14) muI, muI_err = integrate.quad(weightf, -2, 2) assert_allclose(m, muI, rtol=muI_err) assert_raises(ValueError, orth.c_roots, 0) assert_raises(ValueError, orth.c_roots, 3.3)
def test_roots_chebyc(): weightf = orth.chebyc(5).weight_func verify_gauss_quad(sc.roots_chebyc, orth.eval_chebyc, weightf, -2., 2., 5) verify_gauss_quad(sc.roots_chebyc, orth.eval_chebyc, weightf, -2., 2., 25) verify_gauss_quad(sc.roots_chebyc, orth.eval_chebyc, weightf, -2., 2., 100) x, w = sc.roots_chebyc(5, False) y, v, m = sc.roots_chebyc(5, True) assert_allclose(x, y, 1e-14, 1e-14) assert_allclose(w, v, 1e-14, 1e-14) muI, muI_err = integrate.quad(weightf, -2, 2) assert_allclose(m, muI, rtol=muI_err) assert_raises(ValueError, sc.roots_chebyc, 0) assert_raises(ValueError, sc.roots_chebyc, 3.3)
def test_chebyc(self): C0 = orth.chebyc(0) C1 = orth.chebyc(1) C2 = orth.chebyc(2) C3 = orth.chebyc(3) C4 = orth.chebyc(4) C5 = orth.chebyc(5) assert_array_almost_equal(C0.c,[2],13) assert_array_almost_equal(C1.c,[1,0],13) assert_array_almost_equal(C2.c,[1,0,-2],13) assert_array_almost_equal(C3.c,[1,0,-3,0],13) assert_array_almost_equal(C4.c,[1,0,-4,0,2],13) assert_array_almost_equal(C5.c,[1,0,-5,0,5,0],13)
def test_chebyc(self): C0 = orth.chebyc(0) C1 = orth.chebyc(1) with np.errstate(all='ignore'): C2 = orth.chebyc(2) C3 = orth.chebyc(3) C4 = orth.chebyc(4) C5 = orth.chebyc(5) assert_array_almost_equal(C0.c,[2],13) assert_array_almost_equal(C1.c,[1,0],13) assert_array_almost_equal(C2.c,[1,0,-2],13) assert_array_almost_equal(C3.c,[1,0,-3,0],13) assert_array_almost_equal(C4.c,[1,0,-4,0,2],13) assert_array_almost_equal(C5.c,[1,0,-5,0,5,0],13)
def test_chebyc(self): C0 = orth.chebyc(0) C1 = orth.chebyc(1) olderr = np.seterr(all='ignore') try: C2 = orth.chebyc(2) C3 = orth.chebyc(3) C4 = orth.chebyc(4) C5 = orth.chebyc(5) finally: np.seterr(**olderr) assert_array_almost_equal(C0.c, [2], 13) assert_array_almost_equal(C1.c, [1, 0], 13) assert_array_almost_equal(C2.c, [1, 0, -2], 13) assert_array_almost_equal(C3.c, [1, 0, -3, 0], 13) assert_array_almost_equal(C4.c, [1, 0, -4, 0, 2], 13) assert_array_almost_equal(C5.c, [1, 0, -5, 0, 5, 0], 13)
def test_chebyc(self): C0 = orth.chebyc(0) C1 = orth.chebyc(1) olderr = np.seterr(all='ignore') try: C2 = orth.chebyc(2) C3 = orth.chebyc(3) C4 = orth.chebyc(4) C5 = orth.chebyc(5) finally: np.seterr(**olderr) assert_array_almost_equal(C0.c,[2],13) assert_array_almost_equal(C1.c,[1,0],13) assert_array_almost_equal(C2.c,[1,0,-2],13) assert_array_almost_equal(C3.c,[1,0,-3,0],13) assert_array_almost_equal(C4.c,[1,0,-4,0,2],13) assert_array_almost_equal(C5.c,[1,0,-5,0,5,0],13)