Directory not loading in the correct order
显示 更早的评论
I am trying to load multiple data sets (30 files) into a structured array but my data is not matching with my folder order. I create my working directory and then access it
wd='C:\Data\Joe\28-Jun-2013\pair 14c\';
CClist=dir([wd '*AltS*.mat']);
%Coupling data (individual)
temp2=[]; bigarray2=[];
for i2=1:length(CClist)
d2=load([wd CClist(i2).name]);
data2=d2.data;
temp2=onerunoneAltS(data2, SliceTime, Age, wd);
bigarray2=[bigarray2; temp2];
end
This successfully loads all of the files into bigarray2 but it does so out of order. my CClist order does not match the files in my directory....
For example, CClist(1) gives me the time stamp 1500, CClist(2) time stamp 1543, CClist(3) time stamp 1501.....I want them to be concatenonized in the order that it is in my folder 'pair 4c' which the time stamp is correct. All of these files are in the correct order with the correct labels and time stamps. I did rename some of the files ...does this have an effect? my 'Date modified" section of the folder gives me the time stamps and they are all correct. Any help would be appreciated thanks!
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 File Operations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!