How do you populate a struct with multiple loaded .mat files?

18 visualizaciones (últimos 30 días)
Hi,
So I have this code below that loads my data. It works fine when not wrapped in a function, however when I wrap it in a function it doesn't work. While debugging, I can see it loading my files, however, when I get to the end of the function, they don't load onto the current workspace.
Secondly, when I assign a variable for the data files to load into, they load fine when I am only dealing with one file. When I try to load multiple files however, it doesn't run as expected. It keeps overwriting each loaded array in the struct.
I'm not at all sure what i'm doing wrong
Any help is appreciated.
Thank you!
function S=LoadData % When not wrapped in function, doesn't output S
[file,path]=uigetfile(...
{'*.m;*.mlx;*.fig;*.mat;*.slx;*.mdl',...
'MATLAB Files (*.m,*.mlx,*.fig,*.mat,*.slx,*.mdl)';
'*.jpg;*.jpeg;*.png;*.tif;*.tiff',...
'Images (*.jpg,*.jpeg,*.png,*.tif,*.tiff)'},...
'Select a File','MultiSelect','on');
if isequal(file,0)
clear file
clear path
else
if iscell(file)
for k=1:size(file,2)
S=load(fullfile(path,file{k})); % Keeps overwriting S rather than appending
end
else
S=load(fullfile(path,file));
end
clear file
clear path
end
end

Respuesta aceptada

Xingwang Yong
Xingwang Yong el 30 de Sept. de 2020
There is a contradiction between your statement and your comment in code. I assume you are asking about " however when I wrap it in a function it doesn't work".
In your case, the scope of variable 'S' is limited within the function LoadData(). You can use nested function to change this behaviour.
function yourMainScript
S = [];
S = LoadData(); % now S will be in the workspace of the main script
function S=LoadData
% ...
end
end
As for overwriting, you can avoid it like this
if isempty(S)
S = load(fullfile(path,file{k}));
else
tmp = load(fullfile(path,file{k}));
for fn = fieldnames(tmp)'
S.(fn{1}) = tmp.(fn{1}); % this will overwrtie if have same fieldnames
end
end
Loop over fields of a struct can be found here:
  1 comentario
David Mabwa
David Mabwa el 14 de Oct. de 2020
Editada: David Mabwa el 14 de Oct. de 2020
Thank you, that worked like a charm. My main issue was with the overwriting.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Productos


Versión

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by