rainycloud
Computer
- Mar 24, 2009
- 1
Hi all,
May I get help in how to save a Matlab movie?
I can generate a movie by using the following cammands
fig1;
winsize = get(fig1,'Position');
winsize(1:2)=[0 0];
numframes=100;
A=moviein(numframes,fig1,winsize);
set(fig1,'NextPlot','replacechildren')
for i=1:numframes ;
plot(x,u(i,,x,v(i,,'LineWidth',2);
A,i)=getframe(fig1,winsize);
end
How to save the resultant movie?
Thak you in adavance.
May I get help in how to save a Matlab movie?
I can generate a movie by using the following cammands
fig1;
winsize = get(fig1,'Position');
winsize(1:2)=[0 0];
numframes=100;
A=moviein(numframes,fig1,winsize);
set(fig1,'NextPlot','replacechildren')
for i=1:numframes ;
plot(x,u(i,,x,v(i,,'LineWidth',2);
A,i)=getframe(fig1,winsize);
end
How to save the resultant movie?
Thak you in adavance.