How to combine two cell arrays as variables with changing sizes in a for loop for a fullfile command?
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi everyone,
i have two cell arrays:
H5 = 1x6 cell
A7 = 60x1 cell
Array Size changes over time but A7 is always 10x as big as H5.
The idea is that H5 contains file paths ends in a specific folder and A7 contains filenames in this specific folders.
In every folder from H5 are 10 files from A7.
The problem is an error message at the start of the second loop iteration:
"Unable to find or open 'C:\mypath\folder2(H5 position 2)\file1(A7 Position 1)'" so the loop doesnt work as i want.
Does anyone know how to get an F1 that take for every H5 Loop 10 A7 Loops?
Thank you!!
for uu = 1:size(H5,2)
for ii = 1:size(A7,1)
F1 = fullfile(H5{uu},A7{ii});
fprintf(1, 'Now reading %s\n', F1);
end
end
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Find more on Dictionaries in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!