(self)
| 585 | assert_raises(TypeError, Chebyshev.interpolate, self.f, 10.) |
| 586 | |
| 587 | def test_dimensions(self): |
| 588 | for deg in range(1, 5): |
| 589 | assert_(Chebyshev.interpolate(self.f, deg).degree() == deg) |
| 590 | |
| 591 | def test_approximation(self): |
| 592 |
nothing calls this directly
no test coverage detected