点击运行
import numpy as np from scipy import interpolate x = np.linspace(0, 4, 12) y = np.cos(x**2/3+4) print(x,y)
运行结果 :
正在执行...