假设我已经定义了一个函数
def func(x):
return x**2;
是否有一个以“ func”作为参数并返回另一个衍生函数的方法XXX?例如,
dfunc = XXX(func);
print(dfunc(3))
给我6。
我需要一个函数来为我的作业返回第一类贝塞尔函数的导数>
答案 0 :(得分:0)
有两种方法可以完成此操作:
使用符号数学,基本上就像编码一个代数表达式,然后让计算机找出导数的解析表达式;这些功能可能非常强大,但仅限于某些类型的问题: https://www.sympy.org/en/index.html
使用有限差分。这是一个非常常见且功能强大的概念,其原理是使用delta_x小且有限而不是趋于零的导数定义: https://en.wikipedia.org/wiki/Finite_difference
对于您的特定问题,可以这样做,例如:
import numpy as np
import matplotlib.pyplot as plt
def func(x):
return x**2
def finiteDifference(f, limits, deltaX):
# create values of the function at specific locations
x = np.arange(limits[0], limits[1]+deltaX, deltaX)
y = np.zeros(len(x))
for i in range(len(x)):
y[i] = f(x[i])
# construct the derivative
dydx = np.zeros(len(x))
# first order at the ends
dydx[0] = (y[1]-y[0]) / deltaX
dydx[-1] = (y[-1]-y[-2]) / deltaX
# central 2nd order elsewhere
for i in range(1, len(x)-1):
dydx[i] = (y[i+1] - y[i-1]) / (2.*deltaX)
return x, y, dydx
x, y, dydx = finiteDifference(func, (-2, 2), 0.1)
plt.plot(x, y, "r-", x, dydx, "b-", lw=2)
# compare with analytical f'=2x
plt.plot(x, 2.*x, "gx", ms=5, mew=2)
plt.show()