Status: New
Owner: ----
Labels: Type-Enhancement Priority-Low
New issue 3574 by [email protected]: live.sympy.org/#example should show
an open example tab in sidebar
http://code.google.com/p/sympy/issues/detail?id=3574
In general I think it would be really cool to be able to pass commands to
execute in the sympy shell.
Application: If I wanted to demonstrate the usefulness of the Taylor series
approximation to ln(1+x) by showing how to compute ln(2) series so I could
link to:
http://live.sympy.org/?run=def
axn_ln2(n):return1.0*(-1)**(n+1)/n;sum([axn_ln2(n) for n in
range(1,1000000)]);ln(2).evalf();
and the live.sympy shell would load showing:
>>> def axn_ln2(n): return 1.0*(-1)**(n+1)/n
>>> sum([ axn_ln2(n) for n in range(1,1000000) ])
0.693147 68056
>>> ln(2).evalf()
0.693147 180559945
I would be willing to learn how to do this -- sympy is the bomb!
--
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.