Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 3078 by [email protected]: Adding a "real" keyword to solve()
http://code.google.com/p/sympy/issues/detail?id=3078
Operations like solve(Eq(x**3, 1), x) returns three solutions, including
imaginary ones, unless x is declared as real initially. It would be nice to
have a keyword 'real' so that only real solutions are returned, for example:
solve(Eq(x**3, 1), x, real=True)
[1]
To implement could be as simple as running a filter on the list of
solutions...
--
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.