Difference between two statements
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Fausto Pachecco Martínez
el 18 de Nov. de 2021
Comentada: Fausto Pachecco Martínez
el 18 de Nov. de 2021
I have a simple question, what's the difference between switch and if? Can you give me an example of a situation where is useful to use the conditional switch?
0 comentarios
Respuesta aceptada
Más respuestas (1)
Dave B
el 18 de Nov. de 2021
Editada: Dave B
el 18 de Nov. de 2021
Switch doesn't provide new functionality but can make code easier to read and less complex:
a='Apple';
These two blocks do the same thing:
switch lower(a)
case {'apple' 'orange' 'banana'}
t='Fruit';
case {'carrot' 'spinach' 'pea'}
t='Vegetable';
case {'horse' 'cow' 'moose'}
t='Animal'
otherwise
t='unknown'
end
t
if ismember(lower(a),{'apple' 'orange' 'banana'})
t='Fruit';
elseif ismember(lower(a),{'carrot' 'spinach' 'pea'})
t='Vegetable';
elseif ismember(lower(a),{'horse' 'cow' 'moose'})
t='Animal'
else
t='unknown'
end
t
An important note: it's not just that the lines are shorter in the second section.
When you enter a switch statement, you know what you're 'switching on' - the logic will only deal with the contents of lower(a). When you enter an if statement with a bunch of branches they have access to everything in the workspace. That means a single if statement can be more flexible, but also more complex. Modifications to things other than the contents of lower(a) can affect the if statement but not the switch, which can be a big advantage in reducing complexity!
(For this reason, if you run checkmcode with the '-modcyc' keyword, you'll see that switch statements are marked as having a reduced complexity score.)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!