matplotlib動畫入門(2):第一個動畫
- 2019 年 10 月 6 日
- 筆記
新建一個文件 basic_animation.py,程式碼如下
源程式碼來源 https://jakevdp.github.io/blog/2012/08/18/matplotlib-animation-tutorial/
''' 引入相應包 ''' import numpy as np from matplotlib import pyplot as plt from matplotlib import animation #創建一個Figure fig = plt.figure() #創建坐標,橫坐標顯示的區間是(0,2),縱坐標顯示的空間是(-2,2) ax = plt.axes(xlim=(0, 2), ylim=(-2, 2)) #創建一個圖(plot),初始橫坐標縱坐標都是空,linewidth=2 line, = ax.plot([], [], lw=2) #初始化函數,會被FuncAnimation調用 def init(): line.set_data([], []) return line, # 動畫函數,每一幀都會調用此函數,i為幀號. def animate(i): #返回一個ndarray數組,起始為0,終止為2,100個元素。 x = np.linspace(0, 2, 100) #計算y值 y = np.sin(2 * np.pi * (x - 0.01 * i)) line.set_data(x, y) return line, ''' 執行動畫 fig: call the animator. blit=True means only re-draw the parts that have changed. ''' anim = animation.FuncAnimation(fig, animate, init_func=init, frames=200, interval=20, blit=True) plt.show()
執行程式碼
python3 basic_animation.py