scipy.interpolate.UnivariateSpline.
导数#
- UnivariateSpline.derivatives(x)[source]#
返回样条曲线在点 x 处的全部导数。
- 参数:
- xfloat
要评估导数的点。
- 返回值:
- derndarray, 形状 (k+1,)
从 0 到 k 阶的导数。
示例
>>> import numpy as np >>> from scipy.interpolate import UnivariateSpline >>> x = np.linspace(0, 3, 11) >>> y = x**2 >>> spl = UnivariateSpline(x, y) >>> spl.derivatives(1.5) array([2.25, 3.0, 2.0, 0])