(self)
| 610 | assert_raises(TypeError, Chebyshev.interpolate, self.f, 10.) |
| 611 | |
| 612 | def test_dimensions(self): |
| 613 | for deg in range(1, 5): |
| 614 | assert_(Chebyshev.interpolate(self.f, deg).degree() == deg) |
| 615 | |
| 616 | def test_approximation(self): |
| 617 |
nothing calls this directly
no test coverage detected