(self)
| 679 | assert_array_equal(w_hist, 2 * hist) |
| 680 | |
| 681 | def test_identical_samples(self): |
| 682 | x = np.zeros((10, 2), int) |
| 683 | hist, edges = histogramdd(x, bins=2) |
| 684 | assert_array_equal(edges[0], np.array([-0.5, 0., 0.5])) |
| 685 | |
| 686 | def test_empty(self): |
| 687 | a, b = histogramdd([[], []], bins=([0, 1], [0, 1])) |
nothing calls this directly
no test coverage detected