Abort Matlab Program via callback

3 visualizzazioni (ultimi 30 giorni)
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

Risposta accettata

Aurelien Queffurust
Aurelien Queffurust il 10 Feb 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?

Più risposte (0)

Categorie

Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by