Difference between two statements

조회 수: 2 (최근 30일)
Fausto Pachecco Martínez
Fausto Pachecco Martínez 2021년 11월 18일
댓글: Fausto Pachecco Martínez 2021년 11월 18일
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?

채택된 답변

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

추가 답변 (1개)

Dave B
Dave B 2021년 11월 18일
편집: Dave B 2021년 11월 18일
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.)

카테고리

Help CenterFile Exchange에서 Just for fun에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by