(self)
| 684 | assert_array_equal(H, Z) |
| 685 | |
| 686 | def test_shape_3d(self): |
| 687 | # All possible permutations for bins of different lengths in 3D. |
| 688 | bins = ((5, 4, 6), (6, 4, 5), (5, 6, 4), (4, 6, 5), (6, 5, 4), |
| 689 | (4, 5, 6)) |
| 690 | r = np.random.rand(10, 3) |
| 691 | for b in bins: |
| 692 | H, edges = histogramdd(r, b) |
| 693 | assert_(H.shape == b) |
| 694 | |
| 695 | def test_shape_4d(self): |
| 696 | # All possible permutations for bins of different lengths in 4D. |
nothing calls this directly
no test coverage detected