Comment #1 on issue 3371 by [email protected]: Order() should implement
a conjugate method
http://code.google.com/p/sympy/issues/detail?id=3371
Sorry, I forgot a step in the above description. This doesn't give an error:
In [1]: conjugate(1 + x + Order(x**2))
Out[1]:
_____
_ / 2\
x + 1 + O\x /
but it should simplify to this:
In [2]: 1 + conjugate(x) + Order(conjugate(x)**2)
It is the input [2] that gives NotImplementedError:
The _eval_nseries method should be added to <class
'sympy.core.function.Subs'> to give terms up to O(x**n) at x=0 from
the positive direction so it is available when nseries calls it.
--
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.