Difference between two statements
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Fausto Pachecco Martínez
il 18 Nov 2021
Commentato: Fausto Pachecco Martínez
il 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?
0 Commenti
Risposta accettata
Più risposte (1)
Dave B
il 18 Nov 2021
Modificato: Dave B
il 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
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.)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!