R



http://commons.wikimedia.org/wiki/File:Mandelbrot_Creation_Animation_%28800x600%29.gif
http://www.cerebralmastication.com/2009/02/mandelbrot-set-in-r/

Here are good links





Dnia Fri, 26 Feb 2010 21:01:02 +0000, Adam Majewski napisa?(a):

> Hi,
> 
> I would like to made similar animation :
> http://commons.wikimedia.org/wiki/File:Mandelbrot_Creation_Animation_%
> 28800x600%29.gif
> 
> I have made :
> 
> f(x,y):=
>  block([i:0, c:x+y*%i,ER:4,iMax:20,z:0],
>     
>   while abs(z)<ER and i<iMax
>      do (z:z*z + c,i:i+1),
>   abs(z))$
> 
> plot3d('f(x,y), [x,-2,2], [y,-2,2], [plot_format,gnuplot],
>  [gnuplot_pm3d,true],
>  [gnuplot_preamble, "set pm3d at b; set view map"])$
> 
> wxMaxima works ( it is only one image ) but after some time still no
> effect.
> 
> What's wrong with it ?
> 
> Adam