Boolean style switch-case statements

조회 수: 23 (최근 30일)
D. Plotnick
D. Plotnick 2018년 4월 16일
답변: Stephan 2018년 4월 26일
Hello, I am trying to determine if there is a means of performing Boolean style logic comparisons using the switch-case mechanism; I use switch-case a ton as I find it useful for avoiding extensive 'strcmp' or 'x==1', etc. statements. However, let us say I have a situation where I have cases based on multiple variables, the following pseudo-code shows my intentions:
A = logical;
B = charstring;
switch A,B
case true, 'Apples'
function1;
case true, 'Bananas'
function2;
case false, 'Apples'
function3;
%etc.
otherwise
functionN
end
Now, I understand that I can do this exact same thing in other ways, namely either nested switch-case statements or going back to using standard Boolean logic. However, those methods tend to obscure the intention of each case, and make it more difficult to program in new cases, and I simply find switch case to be the more elegant solution in many situations. Any ideas?

채택된 답변

Stephan
Stephan 2018년 4월 26일
Hi,
See here:
There you'll find a lot of information related to your question.
Best regards
Stephan

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by