python的scipy实现插值

插值对于一些时间序列的问题可能比较有用。html Show the code directly:python import numpy as np from matplotlib import pyplot as plt from scipy.interpolate import interp1d x=np.linspace(0,10*np.pi,num=20) y=np.sin(x) f1=i
相关文章
相关标签/搜索