(self)
| 1408 | array = np.array |
| 1409 | |
| 1410 | def test_matrix_empty(self): |
| 1411 | assert_equal(norm(self.array([[]], dtype=self.dt)), 0.0) |
| 1412 | |
| 1413 | def test_matrix_return_type(self): |
| 1414 | a = self.array([[1, 0, 1], [0, 1, 1]]) |
nothing calls this directly
no test coverage detected