本文简要介绍 python 语言中 scipy.interpolate.NdBSpline
的用法。
用法:
class scipy.interpolate.NdBSpline(t, c, k, *, extrapolate=None)#
张量积样条对象。
点
xp = (x1, x2, ..., xN)
处的值被评估为每个N
维度中一维 b-splines 乘积的线性组合:c[i1, i2, ..., iN] * B(x1; i1, t1) * B(x2; i2, t2) * ... * B(xN; iN, tN)
这里
B(x; i, t)
是由在x
处评估的结向量t
定义的第i
b-spline。- t: 一维 ndarray 的元组
方向 1、2、... N 上的结向量,
len(t[i]) == n[i] + k + 1
- c: ndarray,形状(n1,n2,...,nN,...)
b-spline系数
- k: int 或 length-d 整数元组
样条度。单个整数被解释为所有维度都具有该度数。
- extrapolate: 布尔型,可选
是否推断越界输入,或返回 nan。默认是推断。
参数 ::
- t: ndarray 的元组
结向量。
- c: ndarray
tensor-produce 样条线的系数。
- k: 整数元组
每个维度的度数。
- extrapolate: 布尔型,可选
对于越界输入是否推断或返回 nan。默认为 true。
属性 ::
相关用法
- Python SciPy interpolate.NdPPoly用法及代码示例
- Python SciPy interpolate.NearestNDInterpolator用法及代码示例
- 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.splder用法及代码示例
- Python SciPy interpolate.LinearNDInterpolator用法及代码示例
- Python SciPy interpolate.PPoly用法及代码示例
- Python SciPy interpolate.pade用法及代码示例
- Python SciPy interpolate.barycentric_interpolate用法及代码示例
- Python SciPy interpolate.RegularGridInterpolator用法及代码示例
- 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用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.interpolate.NdBSpline。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。