matplotlib
的 figure 就是一個 單獨的 figure 小視窗, 小視窗裡面還可以有更多的小圖片.
#使用import導入模組matplotlib.pyplot,並簡寫成plt#使用import導入模組numpy,並簡寫成np
import matplotlib.pyplot as plt
import numpy as np
#使用np.linspace定義x:範圍是(-1,1);個數是50. 模擬一維資料組(x ,y)表示曲線1.
x = np.linspace(-3, 3, 50)
y1 = 2*x + 1
y2 = x**2
#使用plt.figure定義一個圖像視窗. 使用plt.plot畫(x ,y)曲線. 使用plt.show顯示圖像.
plt.figure()
plt.plot(x, y1)
plt.plot(x, y2)
plt.show()
沒有留言:
張貼留言