Matplotlib animation
984 ワード
matplotlib で sin波のアニメーションを作った
-
ax.plot()
をimg
で拾える
-
ax.set_prop_cycle(None)
で色を固定できる
-
'imagemagick'
はお手持ちの環境で
-
repeat=False
がうまく動かないのは疑問
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as mpani
x = 2*np.pi* np.arange(50)/50
fig = plt.figure()
ax = fig.add_subplot(111)
imgs = []
for dx in x:
ax.set_prop_cycle(None)
img = ax.plot(x, np.sin(x+dx))
imgs.append(img)
ani = mpani.ArtistAnimation(fig, imgs, interval=100, blit=True, repeat=False)
ani.save('mytest.gif', 'imagemagick')
ax.plot()
をimg
で拾えるax.set_prop_cycle(None)
で色を固定できる'imagemagick'
はお手持ちの環境でrepeat=False
がうまく動かないのは疑問import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as mpani
x = 2*np.pi* np.arange(50)/50
fig = plt.figure()
ax = fig.add_subplot(111)
imgs = []
for dx in x:
ax.set_prop_cycle(None)
img = ax.plot(x, np.sin(x+dx))
imgs.append(img)
ani = mpani.ArtistAnimation(fig, imgs, interval=100, blit=True, repeat=False)
ani.save('mytest.gif', 'imagemagick')
Author And Source
この問題について(Matplotlib animation), 我々は、より多くの情報をここで見つけました https://qiita.com/EcoTetsu/items/15ae159f3e41a491f9cc著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .