フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

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

1 回表示 (過去 30 日間)
Brayden Gregson
Brayden Gregson 2015 年 10 月 21 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
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 件のコメント
Stephen23
Stephen23 2015 年 10 月 21 日
編集済み: Stephen23 2015 年 10 月 21 日
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 件)

Thorsten
Thorsten 2015 年 10 月 21 日
You can use
a(strcmp(a, b))

Stefan Raab
Stefan Raab 2015 年 10 月 21 日
編集済み: Stefan Raab 2015 年 10 月 21 日
find(ismember(a,'cat'))
or
find(ismember(a,b))

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by