(self)
| 1502 | array = np.array |
| 1503 | |
| 1504 | def test_matrix_empty(self): |
| 1505 | assert_equal(norm(self.array([[]], dtype=self.dt)), 0.0) |
| 1506 | |
| 1507 | def test_matrix_return_type(self): |
| 1508 | a = self.array([[1, 0, 1], [0, 1, 1]]) |
nothing calls this directly
no test coverage detected