How to merge two lists of files?
24 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi all,
I have two list of files (4x1 struct) likes this:

I would like the output to be the two lists merged in this way:

Can you help?
0 Kommentare
Akzeptierte Antwort
Voss
am 25 Feb. 2022
list_1 = dir();
list_2 = dir();
combined_list = [list_1; list_2];
disp(list_1);
disp(list_2);
disp(combined_list);
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Structures finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!