Automatisation of .mat files load and storing into a matrix
1 view (last 30 days)
Show older comments
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 Comments
Answers (1)
Stephen23
on 26 Oct 2020
Edited: Stephen23
on 26 Oct 2020
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 Comments
Stephen23
on 28 Oct 2020
"My question is..."
That is quite a different topic to this thread. You should post that as a new question.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!