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 个)

类别

Help CenterFile Exchange 中查找有关 Desktop 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by