Updates:
Labels: -Priority-Medium Priority-High
Comment #1 on issue 2600 by asmeurer: Variable definitions do not always
work at SymPy Live
http://code.google.com/p/sympy/issues/detail?id=2600
This works:
genform = g(f(x)/x) + h(f(x)/x)*f(x).diff(x)
... genform
/f(x)\ /f(x)\ d
g|----| + h|----|*--(f(x))
\ x / \ x / dx
And there's also this behavior:
genform = 1
genform
1
genform = g(f(x)/x) + h(f(x)/x)*f(x).diff(x)
... genform
/f(x)\ /f(x)\ d
g|----| + h|----|*--(f(x))
\ x / \ x / dx
genform
1
--
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.