Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Output an error message for executed command

2 ビュー (過去 30 日間)
jinang patel
jinang patel 2020 年 1 月 23 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
Hello,
Is there is a way to return error message over mulitple expressions or do I need to split each expression into try & catch.
example code
try
exp1
..... exp 50
end
Expected Output
exp5 NOK
exp 20 NOK
  1 件のコメント
Mohammad Sami
Mohammad Sami 2020 年 1 月 25 日
I am not sure what you mean.
the try catch block will catch any exception. If the exception is in the first line of code, the rest of the code will not be executed. if there is no exception, then catch block will not be run.

回答 (1 件)

Walter Roberson
Walter Roberson 2020 年 1 月 25 日
You need try/catch around the execution of each statement that needs separate handling.
If you are able to put the code for each into a function handle, then you can create a cell array of function handles and then loop
for idx = 1 : length(fncs)
try
fncs{idx}(arguments) ;
catch
report it
end
end
See also the Unit Test framework

Community Treasure Hunt

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

Start Hunting!

Translated by