matplotllib繪圖

  座標軸的操作 import matplotlib.pyplot as plt import numpy as np x = np.linspace(-3, 3, 50) y1 = 2*x + 1 y2 = x**2 plt.figure() plt.plot(x, y2) # plot the second curve in this figure with certain paramet
相關文章
相關標籤/搜索