本文整理汇总了Python中scipy.interpolate.fitpack2.SmoothBivariateSpline.get_knots方法的典型用法代码示例。如果您正苦于以下问题:Python SmoothBivariateSpline.get_knots方法的具体用法?Python SmoothBivariateSpline.get_knots怎么用?Python SmoothBivariateSpline.get_knots使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类scipy.interpolate.fitpack2.SmoothBivariateSpline
的用法示例。
在下文中一共展示了SmoothBivariateSpline.get_knots方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_linear_1d
# 需要导入模块: from scipy.interpolate.fitpack2 import SmoothBivariateSpline [as 别名]
# 或者: from scipy.interpolate.fitpack2.SmoothBivariateSpline import get_knots [as 别名]
def test_linear_1d(self):
x = [1,1,1,2,2,2,3,3,3]
y = [1,2,3,1,2,3,1,2,3]
z = [0,0,0,2,2,2,4,4,4]
lut = SmoothBivariateSpline(x,y,z,kx=1,ky=1)
assert_array_almost_equal(lut.get_knots(),([1,1,3,3],[1,1,3,3]))
assert_array_almost_equal(lut.get_coeffs(),[0,0,4,4])
assert_almost_equal(lut.get_residual(),0.0)
assert_array_almost_equal(lut([1,1.5,2],[1,1.5]),[[0,0],[1,1],[2,2]])