Warning Log on app designer
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jonathan Moorman
el 17 de Ag. de 2020
Comentada: Jonathan Moorman
el 20 de Ag. de 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 comentarios
Respuesta aceptada
Prabhanjan Mentla
el 20 de Ag. de 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.
Más respuestas (0)
Ver también
Categorías
Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!