(self, m, n)
| 1680 | (0, 0) |
| 1681 | ]) |
| 1682 | def test_qr_empty(self, m, n): |
| 1683 | k = min(m, n) |
| 1684 | a = np.empty((m, n)) |
| 1685 | |
| 1686 | self.check_qr(a) |
| 1687 | |
| 1688 | h, tau = np.linalg.qr(a, mode='raw') |
| 1689 | assert_equal(h.dtype, np.double) |
| 1690 | assert_equal(tau.dtype, np.double) |
| 1691 | assert_equal(h.shape, (n, m)) |
| 1692 | assert_equal(tau.shape, (k,)) |
| 1693 | |
| 1694 | def test_mode_raw(self): |
| 1695 | # The factorization is not unique and varies between libraries, |
nothing calls this directly
no test coverage detected