Borrar filtros
Borrar filtros

Abort Matlab Program via callback

3 visualizaciones (últimos 30 días)
Christopher
Christopher el 10 de Feb. de 2012
Hello,
I tried to abort my main matlab function via a callback function of an uicontrol function. A short example how I tried to implement it is given below. The problem is that the "error" in the callback only stops the callback function but not the main function. Is there a simple solution to solve this problem? Thanks for your help!
Example code:
function main
fh=figure;
PanicButton=uicontrol('style','pushbutton','Units','normalized',...
'string','Panic Button','BackgroundColor','r',...
'FontUnits','normalized','FontSize',.8,...
'position',[0,0,1,.2],'callback',{@Panic});
try
for ct=1:20
fprintf('%10.6f \n',ct);
pause(2)
end
catch ME
disp('Hooray! You made it!');
rethrow(ME)
end
end
function Panic(hObject,eventdata)
error('USER:Panic','User has pushed the Panic Button!');
end

Respuesta aceptada

Aurelien Queffurust
Aurelien Queffurust el 10 de Feb. de 2012
You could follow this technical solution which provides examples how to achieve this task : How can I interrupt a callback and NOT come back to finish its execution in MATLAB?

Más respuestas (0)

Categorías

Más información sobre Migrate GUIDE Apps 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