Updates:
Status: Accepted
Labels: Documentation
Comment #6 on issue 719 by asmeurer: examples: convert output to pretty
http://code.google.com/p/sympy/issues/detail?id=719
Running examples/all.py, I see that this is not the case. For example,
Running: beginner.basic
(3*a*b**2)**c
===============================================================================
Running: beginner.differentiation
(a + 2*b)**5
5*(a + 2*b)**4
10*(a + 2*b)**4
240*a + 480*b
240*a + 480*b
If these were pretty printed, they would use 2D exponentiation, like
c
⎛ 2⎞
⎝3⋅a⋅b ⎠
5
(a + 2⋅b)
4
5⋅(a + 2⋅b)
4
10⋅(a + 2⋅b)
240⋅a + 480⋅b
240⋅a + 480⋅b
--
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.