fig, ax = plt.subplots() ax.plot(x, y1, color="blue", label="y(x)") ... fig, ax = plt.subplots(figsize=(4, 3)) x = np.linspace(0, 5, 50) ax.scatter(x, ...
確定! 回上一頁