continue for-loop despite matlab error

3 ビュー (過去 30 日間)
Christine
Christine 2012 年 4 月 19 日
I want to process a number of images for data analysis. If one of the images causes a matlab error, I want the program to display a message but to continue with the analysis of the following images. So it would need to continue with the next iteration of a for loop. Is this possible and how would I do this?
Thanks, Christine

採用された回答

Daniel Shub
Daniel Shub 2012 年 4 月 19 日
You could do something like
for ii = 1:n
try
% your code
catch ME
warning('Something happened');
end
end

その他の回答 (1 件)

Christine
Christine 2012 年 4 月 19 日
Great, thanks a lot. This works fine:
for number = 1:number_of_images
try
%image analysis program
catch ME
disp('mistake in picture number'); disp(number);
end
end
  1 件のコメント
Daniel Shub
Daniel Shub 2012 年 4 月 19 日
In this case you do not need to catch the exception object (ME). You might want to check ME to make sure it was because the there was a mistake in the picture number and not some other error.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by