python對數據的簡單迴歸

import numpy as np import matplotlib.pyplot as plt In [3]: def f(x): return np.sin(x)+0.5*x In [4]: x=np.linspace(-2*np.pi,2*np.pi,50) In [7]: plt.plot(x,f(x),'b') plt.grid(True) plt.xlabel('x'
相關文章
相關標籤/搜索