本文简要介绍 python 语言中 scipy.interpolate.splder
的用法。
用法:
scipy.interpolate.splder(tck, n=1)#
计算给定样条的导数的样条表示
- tck: BSpline 实例或 (t, c, k) 的元组
要计算其导数的样条
- n: 整数,可选
要评估的导数顺序。默认值:1
-
BSpline
实例或元组 k2=k-n 阶样条表示输入样条的导数。如果输入参数 tck 是一个元组,则返回一个元组,否则构造并返回一个 BSpline 对象。
-
参数 ::
返回 ::
注意:
例子:
这可用于找到曲线的最大值:
>>> from scipy.interpolate import splrep, splder, sproot >>> import numpy as np >>> x = np.linspace(0, 10, 70) >>> y = np.sin(x) >>> spl = splrep(x, y, k=4)
现在,微分样条并找到导数的零点。 (注意:
sproot
仅适用于 3 阶样条曲线,因此我们适合 4 阶样条曲线):>>> dspl = splder(spl) >>> sproot(dspl) / np.pi array([ 0.50000001, 1.5 , 2.49999998])
这与 的根 非常吻合。
相关用法
- Python SciPy interpolate.splantider用法及代码示例
- Python SciPy interpolate.splrep用法及代码示例
- Python SciPy interpolate.splprep用法及代码示例
- Python SciPy interpolate.sproot用法及代码示例
- Python SciPy interpolate.make_interp_spline用法及代码示例
- Python SciPy interpolate.krogh_interpolate用法及代码示例
- Python SciPy interpolate.InterpolatedUnivariateSpline用法及代码示例
- Python SciPy interpolate.BSpline用法及代码示例
- Python SciPy interpolate.LSQSphereBivariateSpline用法及代码示例
- Python SciPy interpolate.griddata用法及代码示例
- Python SciPy interpolate.LinearNDInterpolator用法及代码示例
- Python SciPy interpolate.PPoly用法及代码示例
- Python SciPy interpolate.NdBSpline用法及代码示例
- Python SciPy interpolate.pade用法及代码示例
- Python SciPy interpolate.barycentric_interpolate用法及代码示例
- Python SciPy interpolate.RegularGridInterpolator用法及代码示例
- Python SciPy interpolate.NdPPoly用法及代码示例
- Python SciPy interpolate.interp2d用法及代码示例
- Python SciPy interpolate.approximate_taylor_polynomial用法及代码示例
- Python SciPy interpolate.RectSphereBivariateSpline用法及代码示例
- Python SciPy interpolate.CloughTocher2DInterpolator用法及代码示例
- Python SciPy interpolate.interp1d用法及代码示例
- Python SciPy interpolate.BPoly用法及代码示例
- Python SciPy interpolate.BarycentricInterpolator用法及代码示例
- Python SciPy interpolate.make_smoothing_spline用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.interpolate.splder。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。