(self)
| 2188 | assert_array_almost_equal(w, flipud(w), 7) |
| 2189 | |
| 2190 | def test_array_like(self): |
| 2191 | x = [0, 0.5] |
| 2192 | y1 = sinc(np.array(x)) |
| 2193 | y2 = sinc(list(x)) |
| 2194 | y3 = sinc(tuple(x)) |
| 2195 | assert_array_equal(y1, y2) |
| 2196 | assert_array_equal(y1, y3) |
| 2197 | |
| 2198 | |
| 2199 | class TestUnique: |
nothing calls this directly
no test coverage detected