(self)
| 2445 | assert_array_almost_equal(w, flipud(w), 7) |
| 2446 | |
| 2447 | def test_array_like(self): |
| 2448 | x = [0, 0.5] |
| 2449 | y1 = sinc(np.array(x)) |
| 2450 | y2 = sinc(list(x)) |
| 2451 | y3 = sinc(tuple(x)) |
| 2452 | assert_array_equal(y1, y2) |
| 2453 | assert_array_equal(y1, y3) |
| 2454 | |
| 2455 | def test_bool_dtype(self): |
| 2456 | x = (np.arange(4, dtype=np.uint8) % 2 == 1) |
nothing calls this directly
no test coverage detected