(self)
| 6627 | assert_equal(zeros[1].array, zeros_test[1].array) |
| 6628 | |
| 6629 | def test_dot_2args(self): |
| 6630 | from numpy.core.multiarray import dot |
| 6631 | |
| 6632 | a = np.array([[1, 2], [3, 4]], dtype=float) |
| 6633 | b = np.array([[1, 0], [1, 1]], dtype=float) |
| 6634 | c = np.array([[3, 2], [7, 4]], dtype=float) |
| 6635 | |
| 6636 | d = dot(a, b) |
| 6637 | assert_allclose(c, d) |
| 6638 | |
| 6639 | def test_dot_3args(self): |
| 6640 | from numpy.core.multiarray import dot |
nothing calls this directly
no test coverage detected