Use of "Break" in switch statement
92 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have a switch statement, and I would like to use a "break" to terminate some calculations if the switch statement is fulfilled.
But which statement can I use, which is similar to "break" like used for loops? Cause I have so far just used "exit" but that statement closes Matlab and I only want to abort some calculations but still not close Matlab completely....
Many Thanks!
2 comentarios
Sole gak
el 30 de En. de 2019
Editada: Sole gak
el 30 de En. de 2019
you can use return
%% in case you have a simple switch case
a = 1; b = 1;
switch a
case 1
disp('foo');
if (b ==1)
disp('bar');
return;
end
disp('bidon');
end
%% this works as well if you have your switch case in a loop
a = 1; b = 1;
while (true)
switch a
case 1
disp('foo');
if (b ==1)
disp('bar');
return;
end
disp('foobar');
end
end
Hope that helps,
S'
Jose
el 13 de Jul. de 2021
Editada: Jose
el 13 de Jul. de 2021
Commands "break", "continue" and "return" work all very nicely within a "switch / case":
function switch_break
if fn2
disp('function fn2 went till the end');
else
disp('function fn2 aborted')
end
% end of switch_break function
function ret= fn2
ret= 0; % return zero if not done all runs
for i= 1:5
fprintf('i=%d of 5: ', i);
[~,~, button]= ginput(1);
switch button
case 1
disp('button 1, continue to the next case');
continue
case 2
disp('button 2, break the loop');
break
case 3
disp('button 3, abandon function');
return
case 27
disp('ESC key, continue after the switch')
end
disp(' more work done after the switch')
end
disp(' more work done after the loop')
ret= 1; % went till the end
Respuestas (3)
Anne van Rossum
el 13 de Ag. de 2014
The following is a "trick" that will break out of the switch.
for br=1:1
switch val
case 'one'
...
if ~some_condition
...
break;
end
case 'two'
...
case 'three'
...
otherwise
...
end
end
As you can see, there is an additional for-loop that is run only once with the only purpose to provide a way to break out of the switch statement.
I think the absence of a break in a switch statement is because people thought the only reason for it was to provide fall-through in early C. Personally, I think people should not tell you how to structure your code, so denying someone to break where he/she wants is a bit presumptuous.
0 comentarios
Jiro Doke
el 18 de Abr. de 2011
What do you mean by "if the switch statement is fulfilled"? Are you trying to get out of the whole switch-case block while you are inside one of the case statements? I would just use if-else-end in your case statement:
switch val
case 'one'
...
if ~some_condition
...
end
case 'two'
...
case 'three'
...
otherwise
...
end
If "some_condition" is satisfied, it would get out of the "one" case. Is this what you mean?
Also, in case you're thinking that it works like C, as you can see from the documentation for switch (see Tips), MATLAB switch does not fall through, so you don't need a "break" or "return" after each case statement.
2 comentarios
Ver también
Categorías
Más información sobre Loops and Conditional Statements 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!