我在 Python 中做过一些工作,但我是scipy
. 我正在尝试使用interpolate
库中的方法来提出一个近似一组数据的函数。
我已经查找了一些示例以开始使用,并且可以让下面的示例代码在Python(x,y)中工作:
import numpy as np
from scipy.interpolate import interp1d, Rbf
import pylab as P
# show the plot (empty for now)
P.clf()
P.show()
# generate random input data
original_data = np.linspace(0, 1, 10)
# random noise to be added to the data
noise = (np.random.random(10)*2 - 1) * 1e-1
# calculate f(x)=sin(2*PI*x)+noise
f_original_data = np.sin(2 * np.pi * original_data) + noise
# create interpolator
rbf_interp = Rbf(original_data, f_original_data, function='gaussian')
# Create new sample data (for input), calculate f(x)
#using different interpolation methods
new_sample_data = np.linspace(0, 1, 50)
rbf_new_sample_data = rbf_interp(new_sample_data)
# draw all results to compare
P.plot(original_data, f_original_data, 'o', ms=6, label='f_original_data')
P.plot(new_sample_data, rbf_new_sample_data, label='Rbf interp')
P.legend()
绘图显示如下:
现在,有没有办法得到一个多项式表达式来表示由Rbf
(即创建为的方法rbf_interp
)创建的插值函数?
或者,如果这不可能Rbf
,也欢迎任何使用不同插值方法、另一个库甚至不同工具的建议。