Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Saving Matlab movie

Status
Not open for further replies.

rainycloud

Computer
Joined
Mar 24, 2009
Messages
1
Location
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.
 
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.

Part and Inventory Search

Sponsor

Back
Top