How do I get the element of a cell in a case_expression that matches the switch_expression?
Info
This question is closed. Reopen it to edit or answer.
Show older comments
a = {'the', 'cat', 'is', 'the', 'dog'};
b = 'cat';
switch b
case a
end
%How would I know which element in a matches b? Would there be a way to get that element and use it?
1 Comment
Answers (2)
Thorsten
on 21 Oct 2015
You can use
a(strcmp(a, b))
Stefan Raab
on 21 Oct 2015
Edited: Stefan Raab
on 21 Oct 2015
find(ismember(a,'cat'))
or
find(ismember(a,b))
This question is closed.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!