(self)
| 119 | assert_(np.isrealobj(np.poly(np.concatenate((a, np.conjugate(a)))))) |
| 120 | |
| 121 | def test_roots(self): |
| 122 | assert_array_equal(np.roots([1, 0, 0]), [0, 0]) |
| 123 | |
| 124 | def test_str_leading_zeros(self): |
| 125 | p = np.poly1d([4, 3, 2, 1]) |
nothing calls this directly
no test coverage detected