Filling structure with variables from different files
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have a total of 30 mat files , with variables stored in each. Now i would like to access a certain variable from each .mat files and fill them in a single structure.
e.g (case8.mat) and selecting 'Fval2' variable from corresponding mat files
I have come up with this, though its incomplete
S=struct;
S.a=load('case8','Fval2')
S.b=load('case9','Fval2')
This method seems to be time consuming, is there any way to implement a for loop to load files name in order and then assign them in struct accordingly.
Thanks!
0 comentarios
Respuestas (1)
Eric
el 5 de Feb. de 2018
You can do:
alpha = 'a':'z';
cases = 8:12;
for i = 1:length(cases)
S.(alpha(i)) = load(['case' num2str(cases(i))],'Fval2');
end
But since you have 30 files, you might want to consider what happens when you hit z... If your files are all similar and have the same variable names you are loading in from each file, you may want consider a structure array:
cases = 8:37
for i = 1:length(cases)
S(i) = load(['case' num2str(cases(i))],'Fval1','Fval2');
end
Which you can then use by doing things like S(2).Fval2. Structure arrays can be a little difficult to work with at times, but might suit your needs perfectly.
1 comentario
Stephen23
el 5 de Feb. de 2018
Editada: Stephen23
el 5 de Feb. de 2018
Suggesting a structure array is a good idea. Read more in the documentation:
Note sprintf is more efficient than num2str with concatenation, and it is good practice to avoid length:
for k = 1:numel(cases)
name = sprintf('case%d.mat',k);
S(k) = load(name,'Fval1','Fval2');
end
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!