Warning Log on app designer
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Jonathan Moorman
am 17 Aug. 2020
Kommentiert: Jonathan Moorman
am 20 Aug. 2020
Hi! I am writing a program on app designer, and am trying to see if there's a way to display a warning message that shows up for a specific MATLAB error? I understand how to use the warning messages themselves, but didn't know if I could tie it to the error below. Thanks!
0 Kommentare
Akzeptierte Antwort
Prabhanjan Mentla
am 20 Aug. 2020
Hi,
To get the custom warning message that shows up for a specific MATLAB error, you may use try catch statement like this:
try
%Error causing code
catch
% Error handling
End
Hope this helps.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!