Status: New
Owner: ----
Labels: Type-Enhancement Priority-Medium
New issue 3307 by [email protected]: pretty print of a derivative with
a substituted argument
http://code.google.com/p/sympy/issues/detail?id=3307
Hi,
Defining
f = symbols('f', cls=Function)
t, x = symbols('t x')
I noticed a issue with the pretty print of f'(x-t).
Indeed :
f(t).diff(t)
-> nicely pretty prints as "∂f(t)/∂t"
but :
f(t).diff(t).subs(t, x-t)
-> pretty prints is just a pretty raw display of the underlying Subs
instance :
Subs(Derivative(f(_t), _t), (_t,), (-t + x,))
while displaying f'(x-t) may be more readable.
Best,
Pierre
--
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.