Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
How do I get the element of a cell in a case_expression that matches the switch_expression?
조회 수: 1 (최근 30일)
이전 댓글 표시
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?
답변 (2개)
Stefan Raab
2015년 10월 21일
편집: Stefan Raab
2015년 10월 21일
find(ismember(a,'cat'))
or
find(ismember(a,b))
댓글 수: 0
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!