Status: Valid
Owner: ----
Labels: Type-Defect Priority-Low
New issue 3241 by [email protected]: Pretty printing in Mechanics
http://code.google.com/p/sympy/issues/detail?id=3241
When printing a "dynamicsymbol" (really just an undefined function of t)
which is in a Pow, mechanics pretty printer shows the "(t)" when it should
have hidden it. See below.
In [1]: from sympy.physics.mechanics import *
In [2]: q1 = dynamicsymbols('q1')
In [3]: mpprint(q1**2)
2
q₁ (t)
In [4]: mprint(q1**2)
q1**2
In [5]: mpprint(q1)
q₁
--
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.