Read .csv files in the right order
Afficher commentaires plus anciens
Hello, i have a lot of .csv files do read (around 1500) and need to get a value from each. The problem is that the files appear out of the right order. My code:
list = dir('directory.csv');
numFiles = length(list);
for iFile = 1:numFiles
FileName =list(iFile).name;
Data(iFile).FileName = FileName;
end
for i=1:numFiles
A =dlmread(Data(i).FileName,',',[4 1 4 6]); B(i)=A(1,3);
end
plot(B)
The list structure fills as appear in the picture in attachment.
How can i order the right way?
Réponse acceptée
Plus de réponses (1)
Akira Agata
le 17 Juil 2018
Modifié(e) : Akira Agata
le 17 Juil 2018
Please try the following before the for-loop.
list = dir(fullfile(yourDirectory,'*.csv'));
[~, idx] = sort(str2double(regexp({list.name},'\d+(?=.csv)','match','once')));
list = list(idx);
2 commentaires
Tiago Tavares
le 17 Juil 2018
Akira Agata
le 17 Juil 2018
Seems strange... But, anyway, it's nice to hear that you now have a solution!
Catégories
En savoir plus sur Time Series Events dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!