标签: python scipy
使用scipy中的iterp1d,可以将三次方拟合到某些数据。但是,如何获得刚刚拟合的三次多项式的系数呢?
举个简单的例子:
from scipy.interpolate import interp1d x = [1, 2, 3.5, 4] y = [2, 3, 4, 5] f = interp1d(x,y, kind='cubic')