invalid concatenation of structure with matrix
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
assia assia
il 17 Giu 2021
Commentato: assia assia
il 18 Giu 2021
Here's the full code:
folderTestCur = fullfile(folderTest,setTestCur);
ext = {'*.jpg','*.png','*.bmp'};
filepaths = [];
for i = 1 : length(ext):
filepaths = cat(1,filepaths,dir(fullfile(folderTestCur, ext{i})));
end
6 Commenti
SALAH ALRABEEI
il 17 Giu 2021
No in the case, your approach is better. It works even with me without issues.
Risposta accettata
Stephen23
il 18 Giu 2021
P = fullfile(folderTest,setTestCur);
X = {'*.jpg','*.png','*.bmp'};
N = numel(X);
C = cell(1,N);
for k = 1:N
C{k} = dir(fullfile(P,X{k}));
end
F = vertcat(C{:})
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!