本文簡要介紹 python 語言中 scipy.interpolate.SmoothBivariateSpline.ev
的用法。
用法:
SmoothBivariateSpline.ev(xi, yi, dx=0, dy=0)#
評估點處的樣條線
返回
(xi[i], yi[i]), i=0,...,len(xi)-1
處的插值。- xi, yi: array_like
輸入坐標。遵循標準 Numpy 廣播。軸的順序與
np.meshgrid(..., indexing="ij")
一致,與默認順序np.meshgrid(..., indexing="xy")
不一致。- dx: 整數,可選
x-derivative的訂單
- dy: 整數,可選
y-derivative的訂單
參數 ::
例子:
假設我們想要在二維上對一個指數衰減函數進行雙線性插值。
>>> import numpy as np >>> from scipy.interpolate import RectBivariateSpline >>> def f(x, y): ... return np.exp(-np.sqrt((x / 2) ** 2 + y**2))
我們在粗網格上對函數進行采樣並設置插值器。請注意,網格網格的默認
indexing="xy"
會在插值後導致意外(轉置)結果。>>> xarr = np.linspace(-3, 3, 21) >>> yarr = np.linspace(-3, 3, 21) >>> xgrid, ygrid = np.meshgrid(xarr, yarr, indexing="ij") >>> zdata = f(xgrid, ygrid) >>> rbs = RectBivariateSpline(xarr, yarr, zdata, kx=1, ky=1)
接下來,我們使用插值沿著更精細網格上的坐標空間的對角線切片對函數進行采樣。
>>> xinterp = np.linspace(-3, 3, 201) >>> yinterp = np.linspace(3, -3, 201) >>> zinterp = rbs.ev(xinterp, yinterp)
並檢查插值是否作為沿著切片距原點的距離的函數通過函數評估。
>>> import matplotlib.pyplot as plt >>> fig = plt.figure() >>> ax1 = fig.add_subplot(1, 1, 1) >>> ax1.plot(np.sqrt(xarr**2 + yarr**2), np.diag(zdata), "or") >>> ax1.plot(np.sqrt(xinterp**2 + yinterp**2), zinterp, "-b") >>> plt.show()
相關用法
- Python SciPy SmoothBivariateSpline.__call__用法及代碼示例
- Python SciPy SmoothSphereBivariateSpline.ev用法及代碼示例
- Python SciPy SmoothSphereBivariateSpline.__call__用法及代碼示例
- Python SciPy ShortTimeFFT.from_dual用法及代碼示例
- Python SciPy ShortTimeFFT.from_window用法及代碼示例
- Python SciPy SuperLU.perm_c用法及代碼示例
- Python SciPy SuperLU.solve用法及代碼示例
- Python SciPy ShortTimeFFT.istft用法及代碼示例
- Python SciPy SuperLU.perm_r用法及代碼示例
- Python SciPy ShortTimeFFT.spectrogram用法及代碼示例
- Python SciPy interpolate.make_interp_spline用法及代碼示例
- Python SciPy stats.anderson用法及代碼示例
- Python SciPy ClusterNode.pre_order用法及代碼示例
- Python SciPy stats.iqr用法及代碼示例
- Python SciPy FortranFile.read_record用法及代碼示例
- Python SciPy ndimage.correlate用法及代碼示例
- Python SciPy special.exp1用法及代碼示例
- Python SciPy special.expn用法及代碼示例
- Python SciPy signal.czt_points用法及代碼示例
- Python SciPy interpolate.krogh_interpolate用法及代碼示例
- Python SciPy ndimage.morphological_gradient用法及代碼示例
- Python SciPy distance.sokalmichener用法及代碼示例
- Python SciPy linalg.eigvalsh_tridiagonal用法及代碼示例
- Python SciPy linalg.cdf2rdf用法及代碼示例
- Python SciPy csc_array.diagonal用法及代碼示例
注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.interpolate.SmoothBivariateSpline.ev。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。