鍍金池/ 問答/Python/ matplotlib.animation的func怎樣傳遞參數(shù)?

matplotlib.animation的func怎樣傳遞參數(shù)?

animate(i)中的i參數(shù)是怎樣傳遞的?沒有看到變量的聲明啊

"""
A simple example of an animated plot
"""
import numpy as np
from matplotlib import pyplot as plt
from matplotlib import animation

# First set up the figure, the axis, and the plot element we want to animate
fig = plt.figure()
# create our line object which will be modified in the animation
ax = plt.axes(xlim=(0, 2), ylim=(-2, 2))
# we simply plot an empty line: we’ll add data to the line later
line, = ax.plot([], [], lw=2)


# initialization function: plot the background of each frame
def init():
    line.set_data([], [])
    return line,


# animation function.  This is called sequentially
# It takes a single parameter, the frame number i 
def animate(i):
    x = np.linspace(0, 2, 1000)
    y = np.sin(2 * np.pi * (x - 0.01 * i))  # update the data
    line.set_data(x, y)
    return line,


# Makes an animation by repeatedly calling a function func
# frames can be a generator, an iterable, or a number of frames.
# interval draws a new frame every interval milliseconds.
# blit=True means only re-draw the parts that have changed.
# 在這里設(shè)置一個(gè)200幀的動(dòng)畫,每幀之間間隔20毫秒
anim = animation.FuncAnimation(fig, animate, init_func=init,
                               frames=200, interval=20, blit=True)

# save the animation as an mp4.  This requires ffmpeg or mencoder to be
# installed.  The extra_args ensure that the x264 codec is used, so that
# the video can be embedded in html5.  You may need to adjust this for
# your system: for more information, see
# http://matplotlib.sourceforge.net/api/animation_api.html


plt.show()  # plt.show() 會(huì)一直循環(huán)播放動(dòng)畫

clipboard.png

回答
編輯回答
淺時(shí)光

返回值是一個(gè)不斷在變的list啊

2017年8月13日 02:47