Info
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
How do I get the element of a cell in a case_expression that matches the switch_expression?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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?
Risposte (2)
Stefan Raab
il 21 Ott 2015
Modificato: Stefan Raab
il 21 Ott 2015
find(ismember(a,'cat'))
or
find(ismember(a,b))
0 Commenti
Questa domanda è chiusa.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!