From: Jaan Pu on
Dear all,

I want to convert an array (which is save in every time-step) into movie. Could you advice me on how should I do it? The array is constructed in 2D domain, so the movie / animation should look something like the particular website as follows:

http://imgi.uibk.ac.at/alexg/swm/dam_t01_id18_iy1_animation.gif

Thanks in advance!

Best Regards,
Jaan
From: Jaan Pu on
"Jaan Pu" <jaan.h.pu(a)gmail.com> wrote in message <hsdvpn$h0c$1(a)fred.mathworks.com>...
> Dear all,
>
> I want to convert an array (which is save in every time-step) into movie. Could you advice me on how should I do it? The array is constructed in 2D domain, so the movie / animation should look something like the particular website as follows:
>
> http://imgi.uibk.ac.at/alexg/swm/dam_t01_id18_iy1_animation.gif
>
> Thanks in advance!
>
> Best Regards,
> Jaan

Anyone has any idea? thanks in advance.
Jaan
From: Jaan Pu on
"Jaan Pu" <jaan.h.pu(a)gmail.com> wrote in message <hse2js$e96$1(a)fred.mathworks.com>...
> "Jaan Pu" <jaan.h.pu(a)gmail.com> wrote in message <hsdvpn$h0c$1(a)fred.mathworks.com>...
> > Dear all,
> >
> > I want to convert an array (which is save in every time-step) into movie. Could you advice me on how should I do it? The array is constructed in 2D domain, so the movie / animation should look something like the particular website as follows:
> >
> > http://imgi.uibk.ac.at/alexg/swm/dam_t01_id18_iy1_animation.gif
> >
> > Thanks in advance!
> >
> > Best Regards,
> > Jaan
>
> Anyone has any idea? thanks in advance.
> Jaan

anyone at all?
From: Walter Roberson on
Jaan Pu wrote:
> "Jaan Pu" <jaan.h.pu(a)gmail.com> wrote in message
> <hse2js$e96$1(a)fred.mathworks.com>...
>> "Jaan Pu" <jaan.h.pu(a)gmail.com> wrote in message
>> <hsdvpn$h0c$1(a)fred.mathworks.com>...
>> > Dear all, > > I want to convert an array (which is save in every
>> time-step) into movie. Could you advice me on how should I do it?


im2frame() followed by movie2avi()
From: Daniel Armyr on
> I want to convert an array (which is save in every time-step) into movie. Could you advice me on how should I do it? The array is constructed in 2D domain, so the movie / animation should look something like the particular website as follows:

Plot each step, and run getframe() for each step.

>>doc getframe will tell you everyting else you need.

--DA