From: thisisme on 10 Mar 2010 05:56 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)
|
Pages: 1 Prev: Movie with data files Next: GUI and waitbar on top of other windows |