Is there any way in sympy to express the derivative of an abstract function evaluated at a point? I can do
import sympy x,x0 = sympy.var(('x','x0')) f=sympy.Function('f') (x) sympy.diff(f) to get the derivative w.r.t. x evaluated at x. If I do sympy.diff(f).subs(x,x0) then I get the derivative w.r.t. x0 evaluated at x0. Can I get the derivative w.r.t. x evaluated at x0? -- You received this message because you are subscribed to the Google Groups "sympy" group. To view this discussion on the web visit https://groups.google.com/d/msg/sympy/-/cQScvWEPp9MJ. To post to this group, send email to sympy@googlegroups.com. To unsubscribe from this group, send email to sympy+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/sympy?hl=en.