Answers for "python calculate derivative of function"

1

python calculate derivative of function

from sympy import Symbol, Derivative

x= Symbol('x')

function= x**4 + 7*x**3 + 8

deriv= Derivative(function, x)
deriv.doit().subs({x:4})
Posted by: Guest on July-27-2020

Code answers related to "python calculate derivative of function"

Python Answers by Framework

Browse Popular Code Answers by Language