Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Output an error message for executed command

1 Ansicht (letzte 30 Tage)
jinang patel
jinang patel am 23 Jan. 2020
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
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 Kommentar
Mohammad Sami
Mohammad Sami am 25 Jan. 2020
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.

Antworten (1)

Walter Roberson
Walter Roberson am 25 Jan. 2020
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

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by