How to break Matlab script execution? Ctrl-C
does not work, probably because of using waitforbuttonpress
inside catch
:
while 1
try
waitforbuttonpress
catch err
end
end
How to break Matlab script execution? Ctrl-C
does not work, probably because of using waitforbuttonpress
inside catch
:
while 1
try
waitforbuttonpress
catch err
end
end