Restart code or exit matlab

59 views (last 30 days)
Yixiang Guice
Yixiang Guice on 25 Nov 2018
Answered: Walter Roberson on 25 Nov 2018
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 Comments
Yixiang Guice
Yixiang Guice on 25 Nov 2018
my program actually consist of a while loop and switch case. the switch case is placed after i ended the while loop
Mahi
Mahi on 25 Nov 2018
I have already answered it. If it is correct then please upvote the answer.

Sign in to comment.

Answers (2)

Mahi
Mahi on 25 Nov 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..

Walter Roberson
Walter Roberson on 25 Nov 2018
while true
inner loop stuff goes here
switch expression
case 'restart'
continue %while true loop
case 'terminate'
quit
end
end

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!