How to call a function on "dbstop if error"
2 次查看(过去 30 天)
显示 更早的评论
I have a large and complex function. I set "dbstop if error" at the start of the function. If the function fails for some reason it will hit dbstop if error.
At this point I wish to call a failed function which can email me the log file and other diagnostics, as well as letting me know that failure has occurred.
How can I do this?
For example, below is a function that will fail
function myFunction()
dbstop if error;
x = 1;
y = 2;
z = xy; % I will fail. After this failure, I would like the code to call a function called myFail.m
end
0 个评论
采纳的回答
Friedrich
2013-4-15
编辑:Friedrich
2013-4-15
Hi,
why not using try/catch?
function myFunction()
try
x = 1;
y = 2;
z = xy; % I will fail. After this failure, I would like the code to call a function called myFail.m
catch err
myFail
end
3 个评论
Friedrich
2013-4-15
No thats not true. First line of your code is try and at the end add the catch statement. You dont need to add this at any point where it can fail.
更多回答(1 个)
Jan
2013-4-15
编辑:Jan
2013-4-15
I can only confirm, that the TRY/CATCH method suggested by Friedrich is design to colve exactly your problem:
try
callYourFunction()
catch ME
% Now email the problem including a stack trace and the MException object
end
Encapsulating the function call in a TRY/CATCH block catchs all internal errors. In opposite to dbstop if error it does not impede the JIT acceleration dramatically.
If you want to enable the debugger in the editor afterwards:
try
callYourFunction()
catch ME
% Now email the problem including a stack trace and the MException object
% Restart:
dbstop if all error
callYourFunction()
end
But how useful is it to enable a remote and local debugging at the same time? It increases the chance, that the local user manipulates the bug locally, such that the (time delayed) external debugging will be based on an outdated source code already.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Debugging and Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!