Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

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

1 Ansicht (letzte 30 Tage)
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 Kommentar
Stephen23
Stephen23 am 21 Okt. 2015
Bearbeitet: Stephen23 am 21 Okt. 2015
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.

Antworten (2)

Thorsten
Thorsten am 21 Okt. 2015
You can use
a(strcmp(a, b))

Stefan Raab
Stefan Raab am 21 Okt. 2015
Bearbeitet: Stefan Raab am 21 Okt. 2015
find(ismember(a,'cat'))
or
find(ismember(a,b))

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by