MathGroup Archive 2005

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: ploting functions slowly

  • To: mathgroup at smc.vnet.net
  • Subject: [mg55876] Re: ploting functions slowly
  • From: Bill Rowe <readnewsciv at earthlink.net>
  • Date: Fri, 8 Apr 2005 01:37:10 -0400 (EDT)
  • Sender: owner-wri-mathgroup at wolfram.com

On 4/7/05 at 5:09 AM, rawwoonsi at yahoo.com (George) wrote:

>could we force mathematica to plot: Plot[Sin[x], {x, 0, 2Pi}]  in
>slow  ploting speed, beginning the slow ploting from  (0,0) very
>slowly to (2Pi)

As far as I know there is no way to control the speed at which a plot is displayed in Mathematica. But you can create the effect of plotting slowly by animating a sequence of plots. For example, try

Table[Plot[Sin[x],{x, 0, n},
       PlotRange -> {{0, 2*Pi},{-1.1, 1.1}}], 
      {n, 0, 2*Pi, 0.02*Pi}]; 

After the plots are generated, collapse the output graphics cells to one and then double click on the graphic to start the animation.
--
To reply via email subtract one hundred and four


  • Prev by Date: Re: extracting decimal digits of Pi
  • Next by Date: Re: extracting decimal digits of Pi
  • Previous by thread: Re: ploting functions slowly
  • Next by thread: Re: ploting functions slowly