matplotlib繪圖2 figure圖像

import matplotlib.pyplot as plt import numpy as np x = np.linspace(-1,1,100) y1 = 2*x + 1 y2 = x**2 plt.figure()#創建第一個圖 plt.plot(x,y1) plt.figure()#創建第二個圖 plt.plot(x,y2) plt.show()
相關文章
相關標籤/搜索