Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

Saving Matlab movie

Status
Not open for further replies.

rainycloud

Computer
Mar 24, 2009
1
0
0
GB
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.
 
Replies continue below

Recommended for you

I don't know what facilities Matlab has. But if you can play it on your screen there are a variety of free utilities to capture it to AVI file or similar format. Search at download.com. I have used the one called "Easy Screen Capture Video"

=====================================
Eng-tips forums: The best place on the web for engineering discussions.
 
Status
Not open for further replies.
Back
Top