any Python equivalent of Math::Polynomial::Solve?

Pierre Schnizer P.Schnizer at nospam.gsi.de
Wed Mar 2 02:45:38 EST 2005


In case you are still interested pygsl wraps the GSL solver.
<snip>
from pygsl import poly
pc = poly.poly_complex(3)
tmp, rs = pc.solve((2,3,1))
print rs
</snip>

You get pygsl at http://sourceforge.net/projects/pygsl/
Pierre



More information about the Python-list mailing list