Automatisation of .mat files load and storing into a matrix
1 次查看(过去 30 天)
显示 更早的评论
Hello,
I have different .mat files named as dx001, dx002,... dx0020.
I want to automate the .mat files load and storing it into a vector of matrix:
dataArray={}
for i=1:20
temp=load(['dx00' num2str(i) '.mat'])
dataArray{i} = ['temp.dx00' num2str(i) '.mat'];
end
This line ( dataArray{i} = ['temp.dx00' num2str(i) '.mat']; ) shows an error:
Do you have any recommandations?
Thanks,
0 个评论
回答(1 个)
Stephen23
2020-10-26
编辑:Stephen23
2020-10-26
N = 20;
C = cell(1,N);
for k = 1:N
F = sprintf('dx00%d.mat',k);
S = load(F);
C(k) = struct2cell(S); % if there is only one variable in the file
% or
%C{k} = S.(sprintf('dx00%d',k));
end
7 个评论
Stephen23
2020-10-28
"My question is..."
That is quite a different topic to this thread. You should post that as a new question.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!