【发布时间】:2014-02-24 19:35:32
【问题描述】:
我有一些需要多项式方程的 2D 采样点。我只发现了这样的东西:
from scipy.interpolate import barycentric_interpolate
// x and y are given as lists
yi = barycentric_interpolate(x, y, xi)
但在这种情况下,我只能得到属于某些 xi 值的 y 值——这不是我想要的。我需要方程(多项式方程的参数)。我怎样才能收到这个?
【问题讨论】:
标签: python scipy interpolation