(self)
| 774 | assert_(hist[1] == 0.0) |
| 775 | |
| 776 | def test_finite_range(self): |
| 777 | vals = np.random.random((100, 3)) |
| 778 | histogramdd(vals, range=[[0.0, 1.0], [0.25, 0.75], [0.25, 0.5]]) |
| 779 | assert_raises(ValueError, histogramdd, vals, |
| 780 | range=[[0.0, 1.0], [0.25, 0.75], [0.25, np.inf]]) |
| 781 | assert_raises(ValueError, histogramdd, vals, |
| 782 | range=[[0.0, 1.0], [np.nan, 0.75], [0.25, 0.5]]) |
| 783 | |
| 784 | def test_equal_edges(self): |
| 785 | """ Test that adjacent entries in an edge array can be equal """ |
nothing calls this directly
no test coverage detected