(self)
| 240 | assert_array_equal(H, 0) |
| 241 | |
| 242 | def test_empty(self): |
| 243 | a, edge1, edge2 = histogram2d([], [], bins=([0, 1], [0, 1])) |
| 244 | assert_array_max_ulp(a, array([[0.]])) |
| 245 | |
| 246 | a, edge1, edge2 = histogram2d([], [], bins=4) |
| 247 | assert_array_max_ulp(a, np.zeros((4, 4))) |
| 248 | |
| 249 | def test_binparameter_combination(self): |
| 250 | x = array( |
nothing calls this directly
no test coverage detected