(self)
| 25 | assert_raises(ValueError, mul) |
| 26 | |
| 27 | def test_matrix_std_argmax(self): |
| 28 | # Ticket #83 |
| 29 | x = np.asmatrix(np.random.uniform(0, 1, (3, 3))) |
| 30 | assert_equal(x.std().shape, ()) |
| 31 | assert_equal(x.argmax().shape, ()) |
nothing calls this directly
no test coverage detected