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