Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
How do I get the element of a cell in a case_expression that matches the switch_expression?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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
Respuestas (2)
Stefan Raab
el 21 de Oct. de 2015
Editada: Stefan Raab
el 21 de Oct. de 2015
find(ismember(a,'cat'))
or
find(ismember(a,b))
0 comentarios
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!