[julia-users] Re: animated plot

2014-02-24 Thread harven
Thanks for the answer, pyplot looks great and seems to be the easiest way to animate a plot. I tried with Winston and I just managed to do a simple animation as follows: using Winston frame(f, u; pts = 1000, kw...) = Curve([real(f(t,u)) for t in 0:1/pts:1],[imag(f(t,u)) for t in

[julia-users] Re: animated plot

2014-02-24 Thread Steven G. Johnson
Matplotlib (via PyPlot) has support for generating and exporting animations (http://matplotlib.org/examples/animation/index.html).