importing xml and change to mat stuct

5 visualizzazioni (ultimi 30 giorni)
KDRA
KDRA il 10 Ott 2018
Commentato: Daniel Abraham il 15 Lug 2021
Hello,
I am trying to import multiple *.xml files from specific location and change them into mat structure files but I am facing some problems. This is my code:
if true
% code
end
%loading files from device
filedir= 'X:\GD\EA\ASP\Interest_groups\test\test_export.xml\pilot_studies'; %location of the files
file = dir(fullfile(filedir, '*.xml'));
mfiles=length(file); %number of files in the specified folder
for i = 1: mfiles
fid(i)=fopen(fullfile(filedir, file(i).name),'rt');
s{i}=textscan(fid(i), '%s', 'delimiter','\n');
fclose(fid(i));
end
S = xml2struct(s)
It basically gives me the error in the last line saying that the first input to exist must be a string scalar or a character vector. My s variable is 1x3 cell which is weird. I am not sue how to solve it. I would appreciate your help.
K
  1 Commento
Raúl GB
Raúl GB il 10 Ott 2018
Modificato: Raúl GB il 10 Ott 2018
In the last line of the code written by you or the last line of code of any of the functions? Maybe by adding an example of how the xml looks like and the error message we may have a better idea.

Accedi per commentare.

Risposta accettata

Guillaume
Guillaume il 10 Ott 2018
You're making your life more complicated than you need to. You don't need to parse the file, xml2struct will do that for you, so the only thing you have to give it is the filename:
S = cell(1, numel(mfiles));
for i = 1 : mfiles
S{i} = xml2struct(fullfile(filedir, file(i).name)); %load xml, convert to structure, and put structure in cell array
end
S = [S{:}]; %concatenate scalar structures into a structure array. Will fail if the xml of the files don't have the same elements.
xml2struct does not take a char array/string as input. The only other possible input is an xml DOM object as returned by xmlread:
S = cell(1, numel(mfiles));
for i = 1 : mfiles
xml = xmlread(fullfile(filedir, file(i).name)); parse xml file
S{i} = xml2struct(xml); %convert xml to structure, and put structure in cell array
end
S = [S{:}]; %concatenate scalar structures into a structure array. Will fail if the xml of the files don't have the same elements.
Obviously, it's simpler to let xml2struct do the call to xmlread for you, so use the first version.

Più risposte (1)

KDRA
KDRA il 10 Ott 2018
Thanks a lot! I am still learning to write my scripts in the most efficient way ;)

Community Treasure Hunt

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

Start Hunting!

Translated by