Updates:
Labels: NeedsReview
Comment #9 on issue 2132 by mattpap: Derivative of RootSum
http://code.google.com/p/sympy/issues/detail?id=2132
In 74cd9297f0df1df6bbdeaf12616d62dd71141a0f support for auto-simplification
of rational functions was added to RootSum, e.g.:
In [1]: %time RootSum(x**5 - x + 1, Lambda(z, z*log(x - z))).diff(x)
CPU times: user 1.22 s, sys: 0.00 s, total: 1.22 s
Wall time: 1.22 s
Out[2]:
-(-4⋅x + 5)
───────────
5
x - x + 1
The algorithm is a bit slow. Further speed improvements are possible, just
Frac() has to be implemented or expand() and related stuff fixed.
--
You received this message because you are subscribed to the Google Groups
"sympy-issues" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sympy-issues?hl=en.