フィルターのクリア

error message in GUI

4 ビュー (過去 30 日間)
ludvikjahn
ludvikjahn 2015 年 3 月 11 日
回答済み: Image Analyst 2015 年 3 月 11 日
good morning, I would like to have an error mesage in GUI which shows up whatever error it finds in any part of the GUI.
Is it possible to doit and, in this case, HOW?
Thanks

回答 (1 件)

Image Analyst
Image Analyst 2015 年 3 月 11 日
Yes. Wrap your code in a try catch block. Here is the snippet:
try
% Some code that might generate an error.
catch ME
errorMessage = sprintf('Error in function %s() at line %d.\n\nError Message:\n%s', ...
ME.stack(1).name, ME.stack(1).line, ME.message);
fprintf(1, '%s\n', errorMessage); % Print to command window.
uiwait(warndlg(errorMessage)); % Popup message alert to user.
end

カテゴリ

Help Center および File ExchangePropagation and Channel Models についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by