Status: Accepted Owner: Vinzent.Steinberg Labels: Type-Enhancement Priority-Medium Integration
New issue 2449 by Vinzent.Steinberg: improve transform http://code.google.com/p/sympy/issues/detail?id=2449
var('w t')
(w, t)
i = Integral(cos(w*t), (t, 0, 1)) i.transform(w*t, t)
Integral(cos(t*w), (t, 0, 1))
i.transform(t, w*t, inverse=True)
Integral(cos(t)/w, (t, 0, w)) It would be great if 'i.transform(w*t, t)' worked out of the box. -- 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.
