Updates:
Status: Fixed
Owner: ---
Cc: [email protected]
Comment #2 on issue 2548 by [email protected]: Partial fraction
decomposition with linear denominators
http://code.google.com/p/sympy/issues/detail?id=2548
Use `extension` option to factorize denominator over the desired domain,
e.g.:
In [1]: apart(1/(x**2 + 1))
Out[1]:
1
──────
2
x + 1
In [2]: apart(1/(x**2 + 1), extension=I)
Out[2]:
ⅈ ⅈ
───────── - ─────────
2⋅(x + ⅈ) 2⋅(x - ⅈ)
--
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.