(self)
| 144 | assert_(np.all(np.array(np.transpose(B).conj() == mB.H))) |
| 145 | |
| 146 | def test_pinv(self): |
| 147 | x = matrix(np.arange(6).reshape(2, 3)) |
| 148 | xpinv = matrix([[-0.77777778, 0.27777778], |
| 149 | [-0.11111111, 0.11111111], |
| 150 | [ 0.55555556, -0.05555556]]) |
| 151 | assert_almost_equal(x.I, xpinv) |
| 152 | |
| 153 | def test_comparisons(self): |
| 154 | A = np.arange(100).reshape(10, 10) |
nothing calls this directly
no test coverage detected