(self)
| 718 | assert_array_equal(w_hist, 2 * hist) |
| 719 | |
| 720 | def test_identical_samples(self): |
| 721 | x = np.zeros((10, 2), int) |
| 722 | hist, edges = histogramdd(x, bins=2) |
| 723 | assert_array_equal(edges[0], np.array([-0.5, 0., 0.5])) |
| 724 | |
| 725 | def test_empty(self): |
| 726 | a, b = histogramdd([[], []], bins=([0, 1], [0, 1])) |
nothing calls this directly
no test coverage detected