I understand that in MATLAB it is not necessary (as it is in C++) to end each 'case' of a switch statement with a 'break;'. The statement stops evaluating once it finds the first successful case.
However, I have the following situation:
switch variable
case {0, 1}
% Action A
case {0, 2}
% Action B
end
In the above situation, if 'variable' equals 0, then only Action A will complete. In the case of variable = 0, I'd like both actions to complete. I could make a separate case for 0 which activates both Actions A & B, but that hardly seems like efficient programming as I'd have to duplicate both the actions.
I'm sure there must be a simple way to do this, but I'm still a relative newbie to MATLAB so I wonder what I could do to keep my code tidy?
Regards