(self)
| 2439 | class TestSinc: |
| 2440 | |
| 2441 | def test_simple(self): |
| 2442 | assert_(sinc(0) == 1) |
| 2443 | w = sinc(np.linspace(-1, 1, 100)) |
| 2444 | # check symmetry |
| 2445 | assert_array_almost_equal(w, flipud(w), 7) |
| 2446 | |
| 2447 | def test_array_like(self): |
| 2448 | x = [0, 0.5] |
nothing calls this directly
no test coverage detected