MathGroup Archive 2011

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

Search the Archive

Re: How to create an animated gif (was: How to roll up

  • To: mathgroup at smc.vnet.net
  • Subject: [mg118366] Re: How to create an animated gif (was: How to roll up
  • From: Sol Lederman <sol.lederman at gmail.com>
  • Date: Sun, 24 Apr 2011 08:26:57 -0400 (EDT)

Heike,

That did it. Thank you very much.

Sol

On Sat, Apr 23, 2011 at 9:46 AM, Heike Gramberg <heike.gramberg at gmail.com>wrote:

> To create an animated gif, you need to export a list of images, not an
> Animate object, e.g.
>
> list =
>  Table[Graphics[{Blue,
>     Table[Line[{{a - x, 0}, {0, x}, {x - a, 0}, {0, -x}, {a - x,
>         0}}], {x, 0, a}]}], {a, 0, 20}];
>
> Export["animation.gif", list]
>
> Heike.
>
>


  • Prev by Date: Re: Mathematica code for fractal dimension
  • Next by Date: Re: Limit[f[x], x->a] vs. f[a]. When are they equal?
  • Previous by thread: Re: How to create an animated gif (was: How to roll up
  • Next by thread: Re: How to create an animated gif (was: How to roll up