MATLAB: Exit code

exit codestop execution

Hi,
Can anyone help me with following:
cntr1 and cntr2 are 2 counter.
I want something like
if cntr1 == cntr2
exit the code (here i need help how to exit?)
uiwait(msgbox('Error!'));
end
Thanks in advance for help.
Kind regards. \\ Arsalan

Best Answer

Why are you exiting the code before you present the Error box?
Why are you using msgbox() instead of errordlg() ?
Do you want Matlab as a whole to EXIT, or do you want to RETURN to whatever routine might have called the present one, or do you want to create an ERROR condition that throws the program back to the command prompt unless something CATCHes the error?