import numpy as np from scipy import interpolate import pylab as pl x = np.linspace(0, 10, 11) y = np.sin(x) x_new = np.linspace(0, 10, ...
確定! 回上一頁