Wildcard or multiple conditions on switch/case?
300 次查看(过去 30 天)
显示 更早的评论
Hello,
Is there a way to deal with multiple conditions in switch/case? For example (this is just example):
- Meat could be chicken pork beef lamb
- Veggie could be beans peas corn
- Fruit could be apple pear blueberry
Looking for a way to then select for each possible combination. Is the easiest way just nested switch/case? Or is there something more elegant? Is there an easy way to use case wildcards (not great for this example)?
Thanks!
Doug
4 个评论
采纳的回答
Steven Lord
2019-10-18
I'm not sure how switch / case fits into this. You don't need it (unless this is part of a homework assignment and it requires you to use a switch / case.) Let's define the food groups. I'm using string arrays but you could use numbers.
meat = ["chicken"; "beef"; "pork"; "lamb"];
veggie = ["beans"; "peas"; "corn"];
fruit = ["apple"; "pear"; "blueberry"];
Use ndgrid to generate the 3-D arrays where combining the same element of each of the three arrays gives you one combination.
[M, V, F] = ndgrid(meat, veggie, fruit);
Combine them into a 2-D list with each row representing one combination.
possibleDinners = [M(:), V(:), F(:)];
What to eat today?
whichDinner = randi(size(possibleDinners, 1));
dinnerTonight = possibleDinners(whichDinner, :)
3 个评论
Walter Roberson
2019-10-19
I am not sure how this deals with "I need to call three different functions, depending on the combination." ?
更多回答(1 个)
Fangjun Jiang
2018-4-24
Choice='chicken';
switch Choice
case {'chicken','pork','beef'}
disp('meat');
case {'bean','pea'}
disp('veggie')
case {'apple','pear'}
disp('fruit');
otherwise
disp('no category');
end
7 个评论
Vivek Thaminni Ramamoorthy
2022-5-7
This should be the accepted answer. It is a more elegant way to combine multiple cases.
Shawn Stone
2022-8-4
For those wanting more robust and elegant ways of matching text, look up the validatestring() function: https://www.mathworks.com/help/matlab/ref/validatestring.html So that you don't have to supply all possible spellings of different text cases.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Environment and Settings 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!