Below a function in python,
forget();var('n i');g(x)=sin(x)+tan(x);
def maderive(n):
for i in range(n):
g=g.diff()
return g
When I call this function
maderive(3)
It doesn't work, I've got an error .
1 | initial version |
Below a function in python,
forget();var('n i');g(x)=sin(x)+tan(x);
def maderive(n):
for i in range(n):
g=g.diff()
return g
When I call this function
maderive(3)
It doesn't work, I've got an error .