PyPlot.jl
PyPlot.jl copied to clipboard
how to animate pyplot() bexkend ? While not woers lik in gr()!
How to animate pyplot() beckend ? While not woers lik in gr()!
using Plots ; pyplot()
for i=1:20
display(plot(rand(50)))
end
Only last plot is displayed (Unfortunatly I cant to use gr() beckend on win 7 :/) Paul
You can add sleep(0.3)
in your loop.
Thanks it worikin :)