[R] Animation of Mandelbrot Set

2005-12-10 Thread dana aeschliman
Hi. I've recently been goofing around with Dr. Tuszynski's code and have made some fun animations. If you want to waste a few minutes please check out the animated gifs at: http://stat-help.net/fractals1.htm Cheers, Dana -- Dana Aeschliman Statistician home: (514) 481-8071

Re: [R] Animation of Mandelbrot Set

2005-10-06 Thread ecoinfo
Very great job On 10/4/05, Tuszynski, Jaroslaw W. [EMAIL PROTECTED] wrote: Hi, I was playing with Mandelbrot sets and come up with the following code, I thought I would share: library(fields) # for tim.colors library(caTools) # for write.gif m = 400 # grid size C = complex(

Re: [R] Animation of Mandelbrot Set

2005-10-06 Thread roger bos
Anyone know why I would get an Error: couldn't find function write.gif despite loading library(caTools) with no errors in R 2.1.1 under XP? Thanks, Roger library(fields) # for tim.colors fields is loaded use help(fields) for an overview of this library library(caTools) # for write.gif Loading

Re: [R] Animation of Mandelbrot Set

2005-10-06 Thread Ingmar Visser
: \([EMAIL PROTECTED]) r-help@stat.math.ethz.ch Subject: Re: [R] Animation of Mandelbrot Set Anyone know why I would get an Error: couldn't find function write.gif despite loading library(caTools) with no errors in R 2.1.1 under XP? __ R-help

Re: [R] Animation of Mandelbrot Set

2005-10-06 Thread Tuszynski, Jaroslaw W.
: [R] Animation of Mandelbrot Set The binary version of caTools on CRAN (1.0) does not have the write.gif function but the source version (1.4) does ... hth, ingmar From: roger bos [EMAIL PROTECTED] Reply-To: roger bos [EMAIL PROTECTED] Date: Thu, 6 Oct 2005 08:14:42 -0400 To: Tuszynski

Re: [R] Animation of Mandelbrot Set

2005-10-06 Thread roger bos
: Re: [R] Animation of Mandelbrot Set The binary version of caTools on CRAN (1.0) does not have the write.gif function but the source version (1.4) does ... hth, ingmar From: roger bos [EMAIL PROTECTED] Reply-To: roger bos [EMAIL PROTECTED] Date: Thu, 6 Oct 2005 08:14:42 -0400

Re: [R] Animation of Mandelbrot Set

2005-10-05 Thread Gabor Grothendieck
This probably has nothing to do with your software but on my Windows XP system I just get a static image on Internet Explorer with the animated GIF but with Firefox and the same GIF the animation comes out as expected. On 10/4/05, Tuszynski, Jaroslaw W. [EMAIL PROTECTED] wrote: Hi, I was

Re: [R] Animation of Mandelbrot Set

2005-10-05 Thread Charles Annis, P.E.
Grothendieck Sent: Wednesday, October 05, 2005 9:38 PM To: Tuszynski, Jaroslaw W. Cc: ([EMAIL PROTECTED]) Subject: Re: [R] Animation of Mandelbrot Set This probably has nothing to do with your software but on my Windows XP system I just get a static image on Internet Explorer with the animated GIF

[R] Animation of Mandelbrot Set

2005-10-04 Thread Tuszynski, Jaroslaw W.
Hi, I was playing with Mandelbrot sets and come up with the following code, I thought I would share: library(fields) # for tim.colors library(caTools) # for write.gif m = 400 # grid size C = complex( real=rep(seq(-1.8,0.6, length.out=m), each=m ), imag=rep(seq(-1.2,1.2,

Re: [R] Animation of Mandelbrot Set

2005-10-04 Thread Romain Francois
Nice !! Le 04.10.2005 21:04, Tuszynski, Jaroslaw W. a écrit : Hi, I was playing with Mandelbrot sets and come up with the following code, I thought I would share: library(fields) # for tim.colors library(caTools) # for write.gif m = 400 # grid size C = complex(