restart matlab in matlab

To restart MATLAB within MATLAB using the command line, you can use the following command:

main.m
exit; matlab;
14 chars
2 lines

This will exit the current MATLAB session and start a new one.

Note that this will clear the workspace and any scripts that were currently running will be terminated. If you want to restart MATLAB without clearing the workspace, you can use the following command instead:

main.m
restart
8 chars
2 lines

This will restart MATLAB without exiting the current session, preserving the workspace and any running scripts. However, note that this command is not supported on all platforms.

gistlibby LogSnag