From: Paul on
Hello,
Is there a way to make an animation by cycling through a group of saved .fig files?

Thanks!
From: us on
"Paul " <palex71(a)hotmail.com> wrote in message <i371po$9ta$1(a)fred.mathworks.com>...
> Hello,
> Is there a way to make an animation by cycling through a group of saved .fig files?
>
> Thanks!

yes...
for example:
- open the FIG-files in sequence...
- use GETFRAME to put the content of each figure's axis into a CELL, eg, m...
- use CAT(1,m{:}) to convert the information into a STRUCT, eg, s...
- use MOVIE to display the frames in s...

us
From: Paul on
"us " <us(a)neurol.unizh.ch> wrote in message <i372o7$a76$1(a)fred.mathworks.com>...
> "Paul " <palex71(a)hotmail.com> wrote in message <i371po$9ta$1(a)fred.mathworks.com>...
> > Hello,
> > Is there a way to make an animation by cycling through a group of saved .fig files?
> >
> > Thanks!
>
> yes...
> for example:
> - open the FIG-files in sequence...
> - use GETFRAME to put the content of each figure's axis into a CELL, eg, m...
> - use CAT(1,m{:}) to convert the information into a STRUCT, eg, s...
> - use MOVIE to display the frames in s...
>
> us

Thanks... could anyone post an example where I can see all of the code?
Thanks again...