scipy.interpolate.BarycentricInterpolator.

__call__#

BarycentricInterpolator.__call__(x)[源代码]#

在点 x 处计算插值多项式

参数:
x类数组

用于计算插值的点或点集。

返回:
y类数组

插值的值。形状由原始数组中插值轴替换为 x 的形状决定。

说明

目前,该代码计算 x 和权重之间的外积,也就是说,它构造一个大小为 (N, len(x)) 的中间数组,其中 N 是多项式的次数。