How do I push back into a struct a list of XML files processed using "xml2struct"?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
MathWorks Support Team
il 16 Feb 2021
Risposto: MathWorks Support Team
il 23 Feb 2021
I have a list of XML files that I want to read and push back into a struct using "xml2struct". How do I do this dynamically so that the size of struct grows in a controlled way each time an XML file is converted and added?
Risposta accettata
MathWorks Support Team
il 16 Feb 2021
One way to achieve this is to read the list of XML files in a "while" loop and populate a nested structure. A nested structure is quite natural for collating many similarly structured XML files as each one itself can be thought of as a struct of structures. The Data Import and Export functionality in MATLAB allows the user to check if they have reached the end of a file while reading it. This means the list of source files can be read in MATLAB and the "xml2struct" function executed on each filename. For example,
fid = fopen('list.txt','rt'); % list of xml files to convert
s = struct;
n = 1;
while ~feof(fid) % checks if at end of file
filename = fgetl(fid); % get the filename line-by-line
s.input_file(n) = xml2struct(filename);
n = n + 1; % iterate in the struct
end
fclose(fid);
In this example, the struct constructed grows in size on each iteration of the while loop as necessary, which means the memory allocation dynamically grows. This can be checked by calling "whos s" on each loop iteration.
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Workspace Variables and MAT Files in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!