import matplotlib.pyplot as plt import numpy as np # 绘制普通图像x = np.linspace(-1, 1, 50) y = 2 * x + 1 plt.plot(x, y) plt.show() # 绘制 ...
確定! 回上一頁