Animated GIF file

When we vary m, wouldn't it be nice to see progressive plots put together in a movie?
Can combine the PNG files together in an animated GIF file:
convert -delay 0 -loop 1000 -crop 0x0 \
  `find . -name '*.png' -print`  movie.gif

animate movie.gif  # or display movie.gif
(convert and animate are ImageMagick tools)
Collect all PNG filenames in a list and join the list items (as in the generation of the ps-file report)

previousnexttable of contents