The roots of the polynomial, where self(x) == 0
(self)
| 1229 | |
| 1230 | @property |
| 1231 | def roots(self): |
| 1232 | """ The roots of the polynomial, where self(x) == 0 """ |
| 1233 | return roots(self._coeffs) |
| 1234 | |
| 1235 | # our internal _coeffs property need to be backed by __dict__['coeffs'] for |
| 1236 | # scipy to work correctly. |