Juliaでアニメーションgif生成
2632 ワード
とにかくデータをアニメーションさせたい
線が流れる様子はとてもいいものだ.
とにかくJuliaつかってみたい
なんだかよさそうなのでつかってみたい.
https://juliaplots.github.io/animations/ を動かしてみた.
動かした
using Reactive, Interact, Plots
x = linspace(0, 2*pi, 100)
dt, nsteps = 0.1, 10
anim = @animate for i in x[2:end]
plot(x, sin.(x - i))
end
gif(anim, "/tmp/anim_fps15.gif", fps = 15)
gif(anim, "/tmp/anim_fps30.gif", fps = 30)
感想
pythonよりアニメーションさせやすい気がする.
ノイズが走るの気になる.
Author And Source
この問題について(Juliaでアニメーションgif生成), 我々は、より多くの情報をここで見つけました https://qiita.com/Urad/items/f489a5aa826ecb2087d1著者帰属:元の著者の情報は、元の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 .