Restart code or exit matlab
35 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Is there any way I can prompt the user to choose whether to restart the code or to exit Matlab.
The part where I need this code to work is after I print out the result using the switch case.
3 comentarios
Mahi
el 25 de Nov. de 2018
I have already answered it. If it is correct then please upvote the answer.
Respuestas (2)
Mahi
el 25 de Nov. de 2018
If CODE here stands for a loop then please refer to the following link:
More infromation can be found here:
Hope this helps!
Thanks..
0 comentarios
Walter Roberson
el 25 de Nov. de 2018
while true
inner loop stuff goes here
switch expression
case 'restart'
continue %while true loop
case 'terminate'
quit
end
end
0 comentarios
Ver también
Categorías
Más información sobre Startup and Shutdown en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!