import matplotlib.pyplot as plt x = np.arange(0.1, 4, 0.5) y = np.exp(-x) yerr = 0.1 + 0.2 * np.sqrt(x) xerr = 0.1 + yerr plt.figure() ...
確定! 回上一頁