Import multiple xml.files in a folder
7 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I have more than 100 xml.files in a folder and I would like to import them in matlab. Each as a separate table for example and also to keep the names of the various file names. I cannot use the import tool since it does not deal with this file type. Does anybody have some advice?
Sincerely,
0 件のコメント
回答 (1 件)
ANKUR KUMAR
2021 年 11 月 16 日
F = dir('path/*.xml')
for index = 1:length(F)
DOMnode = xmlread(F(index));
end
参考
カテゴリ
Help Center および File Exchange で MATLAB Report Generator についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!