(self)
| 2182 | class TestSinc: |
| 2183 | |
| 2184 | def test_simple(self): |
| 2185 | assert_(sinc(0) == 1) |
| 2186 | w = sinc(np.linspace(-1, 1, 100)) |
| 2187 | # check symmetry |
| 2188 | assert_array_almost_equal(w, flipud(w), 7) |
| 2189 | |
| 2190 | def test_array_like(self): |
| 2191 | x = [0, 0.5] |
nothing calls this directly
no test coverage detected