本文简要介绍 python 语言中 scipy.interpolate.krogh_interpolate
的用法。
用法:
scipy.interpolate.krogh_interpolate(xi, yi, x, der=0, axis=0)#
多项式插值的便利函数。
有关详细信息,请参阅
KroghInterpolator
。- xi: array_like
插值点(已知 x 坐标)。
- yi: array_like
已知的 y 坐标,形状为
(xi.size, R)
。解释为长度为 R 的向量,或者如果 R=1 则为标量。- x: array_like
评估导数的一个或多个点。
- der: int 或列表或无,可选
要评估多少个导数,或者对于所有潜在的非零导数为“无”(即,等于点数的数字),或者要评估的导数列表。该数字包括作为 ‘0th’ 导数的函数值。
- axis: 整数,可选
yi 数组中对应于 x 坐标值的轴。
- d: ndarray
如果插值器的值为R-D,则返回的数组将是N乘R的导数。如果x是标量,则中间维度将被删除;如果 yi 是标量,那么最后一个维度将被删除。
参数 ::
返回 ::
注意:
构建插值多项式是一个相对昂贵的过程。如果您想重复评估它,请考虑使用KroghInterpolator 类(这是该函数使用的)。
例子:
我们可以使用 Krogh 插值法对二维观测数据进行插值:
>>> import numpy as np >>> import matplotlib.pyplot as plt >>> from scipy.interpolate import krogh_interpolate >>> x_observed = np.linspace(0.0, 10.0, 11) >>> y_observed = np.sin(x_observed) >>> x = np.linspace(min(x_observed), max(x_observed), num=100) >>> y = krogh_interpolate(x_observed, y_observed, x) >>> plt.plot(x_observed, y_observed, "o", label="observation") >>> plt.plot(x, y, label="krogh interpolation") >>> plt.legend() >>> plt.show()
相关用法
- Python SciPy interpolate.make_interp_spline用法及代码示例
- Python SciPy interpolate.InterpolatedUnivariateSpline用法及代码示例
- Python SciPy interpolate.BSpline用法及代码示例
- Python SciPy interpolate.LSQSphereBivariateSpline用法及代码示例
- Python SciPy interpolate.griddata用法及代码示例
- Python SciPy interpolate.splder用法及代码示例
- 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.sproot用法及代码示例
- Python SciPy interpolate.splantider用法及代码示例
- Python SciPy interpolate.CloughTocher2DInterpolator用法及代码示例
- Python SciPy interpolate.interp1d用法及代码示例
- Python SciPy interpolate.BPoly用法及代码示例
- Python SciPy interpolate.BarycentricInterpolator用法及代码示例
- Python SciPy interpolate.splrep用法及代码示例
- Python SciPy interpolate.make_smoothing_spline用法及代码示例
- Python SciPy interpolate.Rbf用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.interpolate.krogh_interpolate。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。