Comment #2 on issue 1639 by [email protected]: Missing high-level laurent()
and taylor() series expansion functions (Maple 11)
http://code.google.com/p/sympy/issues/detail?id=1639
The Taylor's series (rather than Laurent) is selectable from series with
the flag taylor=True:
h[6] >>> cos(x+1).series(n=3)
13/24 - 5*x/6 - x**2/4 + O(x**3)
h[7] >>> cos(x+1).series(n=3, taylor=True)
-x*sin(1) - x**2*cos(1)/2 + cos(1) + O(x**3)
[ https://github.com/sympy/sympy/pull/61 ]
Should we have a wrapper to series names laurent and taylor?
--
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.