Comment #1 on issue 3965 by [email protected]: sum of chebyshev polys
fails to evaluate
http://code.google.com/p/sympy/issues/detail?id=3965
For now, one can do at least the following:
In [10]: e.subs(x, 2).doit()
Out[10]: 10
(instead of .n()) -- this will give you analytic result. Only if you
want to evaluate the analytic result, like here:
In [13]: e.subs(x, pi).doit()
Out[13]:
2
π + 2⋅π
you can use .n():
In [14]: e.subs(x, pi).doit().n()
Out[14]: 22.8808014557685
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
--
You received this message because you are subscribed to the Google Groups
"sympy-issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sympy-issues.
For more options, visit https://groups.google.com/groups/opt_out.