How do I get the element of a cell in a case_expression that matches the switch_expression?

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

The answer to your question is no, there is no way to know which element of a matched b. If you need the index of the element, then you will have to generate this yourself using one of the methods given in the answers below.

답변 (2개)

Stefan Raab
Stefan Raab 2015년 10월 21일
편집: Stefan Raab 2015년 10월 21일
find(ismember(a,'cat'))
or
find(ismember(a,b))

이 질문은 마감되었습니다.

질문:

2015년 10월 21일

마감:

2021년 8월 20일

Community Treasure Hunt

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

Start Hunting!

Translated by