本文簡要介紹 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。