How to read a table.txt from series of folders?
    2 views (last 30 days)
  
       Show older comments
    
Could you please help me to read the data from a table.txt in a series of subfolders from a directory?
clear;
folderList = dir('folder_*.out');
for i=1:length(folderList)
    A=readmatrix('table.txt');
end
0 Comments
Answers (1)
See Also
Categories
				Find more on Search Path 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!