The roots of the polynomial, where self(x) == 0
(self)
| 1207 | |
| 1208 | @property |
| 1209 | def roots(self): |
| 1210 | """ The roots of the polynomial, where self(x) == 0 """ |
| 1211 | return roots(self._coeffs) |
| 1212 | |
| 1213 | # our internal _coeffs property need to be backed by __dict__['coeffs'] for |
| 1214 | # scipy to work correctly. |