Difference between two statements

1 vue (au cours des 30 derniers jours)
Fausto Pachecco Martínez
Fausto Pachecco Martínez le 18 Nov 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?

Réponse acceptée

Adam Danz
Adam Danz le 18 Nov 2021
Good question.
See this discussion and if you have any other questions or comments, let's continue the disucssion.

Plus de réponses (1)

Dave B
Dave B le 18 Nov 2021
Modifié(e) : Dave B le 18 Nov 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
t = 'Fruit'
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
t = 'Fruit'
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.)

Community Treasure Hunt

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

Start Hunting!

Translated by