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 ...