import matplotlib.pyplot as pltimport numpy as npx = np.linspace(0.1,0.6,6)y = np.exp(x)plt.errorbar(x,y,fmt="bo:",yerr=0.2 ...
確定! 回上一頁