From: thisisme on
Hi,

I have been trying to use MATLAB to make a movie out of my 1000 data files and have had luck to do so quite easily. I was wondering if I can do something to slow the transition time between the plots of subsequent data and possibly display the filename in each transition. Any idea?

my code is following:

filenames = dir;

for i=4:562
newdata = importdata((filenames(i,1).name),'\t',22); %data files

x=newdata.data(:,1);
y=newdata.data(:,2);


plot(x,y);
M(i-3)=getframe;
end
movie(M)