from matplotlib import pyplot as plt import numpy as np x ... 2.0, 20) y = x**2.0 plt.errorbar(x, y, xerr=0.1*x, yerr=5.0 + 0.75*y) ...
確定! 回上一頁