Effacer les filtres
Effacer les filtres

How to create a loop that skips iterations?

2 vues (au cours des 30 derniers jours)
osminbas
osminbas le 4 Avr 2012
Hello,
Here is my code
for y=500:571
fileID=num2str(y);
filename=['Probe TestID ',fileID];
myFolder1='C:\';
filePattern1=fullfile(myFolder,filename)
D=xlsread(filePattern1,'E:E');
...
end
The files in 'myFilder1' are named as Probe TestID XXX but they are not always continuous (with 1 iteration), i.e, Probe TestID 500, Probe TestID 501, Probe TestID 509,....
How do I create a loop that will skip the discontinuity and read all the files without erroring out?
Thank you!

Réponse acceptée

Walter Roberson
Walter Roberson le 4 Avr 2012
for y=500:571
fileID=num2str(y);
filename=['Probe TestID ',fileID];
myFolder1='C:\';
filePattern1=fullfile(myFolder,filename)
if exists(filePattern1, 'file')
D=xlsread(filePattern1,'E:E');
else
fprintf(1, 'skipped missing file %s', filePattern1);
end
...
end
  1 commentaire
osminbas
osminbas le 4 Avr 2012
Thank you, Walter! Awesome! :)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by