I'm trying to write a function that has a literal function as a parameter:
def derive(x, y):
x = symbols(x)
y = symbols(y)
return lambdify(x, y)
derive(5, 'x**2')
This returns a syntax error:
File "<lambdifygenerated-32>", line 1
def _lambdifygenerated(25.0):
^
SyntaxError: invalid syntax
If I write (outside the function scope):
f = lambdify(x, x**2) f(5)
it works. I appreciate any help on this.
In sympy you can get the derivative of a function via
diff()
..subs(x, 5)
fills in the value5
forx
. An example:Here is how a function that would calculate the derivative of a given function at a given value could look like.
evalf()
can be used to iron out symbolic parts (such as giving a numeric approximation for2*pi
orSqrt(5)
which sympy standard wants to keep in their exact symbolic form).If you need the same derivative for a lot of x-values, you can do:
Or, if you want a function that does the derivation and converts to numpy form:
From then on, you can use
g
similar to other numpy functions. Here is a more elaborate example: