read-open many files
    4 views (last 30 days)
  
       Show older comments
    
Hi all!
I have 200 files with name day_0012014 until day_2002014. Each file has 3 columns. I want to plot first and third columns. What can i do?
Thanks...
0 Comments
Answers (1)
  Azzi Abdelmalek
      
      
 on 10 Jul 2015
        
      Edited: Azzi Abdelmalek
      
      
 on 10 Jul 2015
  
      You didn't specify the type of files (text file or Excell or ...). Suppose they are text files
for k=1:200
     FileName=sprintf('day_%03g2014.txt',k)
     data{k}=dlmread(Filename)
end
Now you can access to each matrix
figure
hold on
for k=1:numel(data)
   c1=data{k}(:,1)
   c3=data{k}(:,3)
   plot(c1,c3)
end 
hold off
See Also
Categories
				Find more on Environment and Settings in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
