필터 지우기
필터 지우기

How to create a loop that skips iterations?

조회 수: 2 (최근 30일)
osminbas
osminbas 2012년 4월 4일
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!

채택된 답변

Walter Roberson
Walter Roberson 2012년 4월 4일
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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by