Show error message, Ignore it and save the error information in a file
1 次查看(过去 30 天)
显示 更早的评论
I would like to do what the title says...
My code EITHER shows the message and interrupts the code OR ignores the error and continues.
This one ignores it:
try
aboveA = find(Data(:, 1) > A);
~isempty(aboveA)
msgbox(sprintf('Values at index %d are bigger than %d', aboveA, A), 'Error');
catch
end
And this one shows and interrupts:
try aboveA = find(Data(:, 1) > A); ~isempty(aboveA) catch msgbox(sprintf('Values at index %d are bigger than %d', aboveA, A), 'Error'); end
Any ideas?
0 个评论
回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!