Ask Your Question

Ernö's profile - activity

2018-06-28 10:11:42 +0200 answered a question How to get all (numerical) solutions of an equation?

import numpy coeff=[9,0,4,3,0,1,-17] p=numpy.poly1d(coeff) r=numpy.roots(p) print str(r)