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 comentario

Stephen23
Stephen23 el 21 de Oct. de 2015
Editada: Stephen23 el 21 de Oct. de 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.

La pregunta está cerrada.

Etiquetas

Preguntada:

el 21 de Oct. de 2015

Cerrada:

el 20 de Ag. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by