【python】畫線----Matplotlib 模塊學習系列(一)

使用到的方法 plt.figure() //可以理解爲聲明窗口 plt.plot() // 線的座標值 plt.show() // 顯示 import matplotlib.pyplot as plt import numpy as np x = np.linspace(-1,1,50) //取值範圍以及點數 y = 2*x+1 //方程 plt.figure(num=4, figsize=(4
相關文章
相關標籤/搜索