MATLAB: Convert matlab to exe file

convert matlab to exe file

i made a matlab program and convert it to exe file by using mcrinstaller .. but i can't see the output in exe window .. it disappear quickly … what should i do ??

Best Answer

My guess is the last line of you MATLAB code is exit/quit, which causes you to exit. You probably want to add
pause
before the exit command.
Related Question