Enabling push button after an error occurred?

1 visualización (últimos 30 días)
Raju Kumar
Raju Kumar el 7 de Jun. de 2022
Comentada: Raju Kumar el 10 de Jun. de 2022
Hello Matlab experts,
I have issues with push buttons in matlab app designer. When I perform a task using a push button and everything goes smoothly, the push button retruns to normal (meaning enabled automatically). However, when any errors occur midway (of any kind), the same push botton keeps on disabled. How do I avoid this situation? I mean how to enable the button when there is an error during processing? Can anybody help me on this. A big thanks in advance.
Raju

Respuesta aceptada

Jan
Jan el 7 de Jun. de 2022
Matlab stops, when an error occurs. If it does not run anymore, it cannot modify buttons.
The solution is to catch errors:
try
... your Code which might fail
catch ME
warning('A problem occured: %s', ME.message);
end
Now a warning appears and Matlab proceeds working.

Más respuestas (0)

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!

Translated by