for loop 実行中のエラー処理について

3 次查看(过去 30 天)
雅晶
雅晶 2022-10-27
评论: 雅晶 2022-11-1
for i = 1:5
for loop 実行中に i = 2 でエラーが発生した場合、 i = 2 はエラーということで処理し、
i = 3 やその後も実行を継続していくためにはどうすればよいですか。

采纳的回答

Kojiro Saito
Kojiro Saito 2022-10-27
for文の中の処理をtry とcatch でくくれば可能です。
tryの中でエラーになっても処理が中断せず、catchの中でエラー処理をハンドルできます。
for n=1:5
try
disp(n)
if n==2
surf %入力引数無しでエラーとなる
end
catch ME
disp(ME) % Exceptionを表示
end
end
1 2
MException with properties: identifier: 'MATLAB:narginchk:notEnoughInputs' message: 'Not enough input arguments.' cause: {} stack: [4×1 struct] Correction: []
3 4 5
  1 个评论
雅晶
雅晶 2022-11-1
解決しました。ありがとうございます。

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 ループと条件付きステートメント 的更多信息

标签

产品


版本

R2022b

Community Treasure Hunt

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

Start Hunting!