scipy.interpolate.NearestNDInterpolator.

__call__#

NearestNDInterpolator.__call__(*args, **query_options)[source]#

在给定点处评估插值器。

参数::
x1, x2, … xn浮点数的类数组

要插值数据的点。x1, x2, … xn 可以是具有可广播形状的浮点数类数组。或者 x1 可以是具有形状 (..., ndim) 的浮点数类数组。

**query_options**

这允许将 epspdistance_upper_boundworkers 传递给 cKDTree 的查询函数以明确设置。有关不同选项的概述,请参见 scipy.spatial.cKDTree.query

在版本 1.12.0 中添加。