Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

How to search on cell string into other cell string

1 visualización (últimos 30 días)
Aravin
Aravin el 21 de Ag. de 2016
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
strfind can find one pattern in string cell array. How can I find one small cell array in to bigger cell array.
for example
Students = {'Mr. A', 'Mr. B', 'Mr. C', 'Mr. D'};
to_find = {'Mr. C', 'Mr. A'};
Now I want to find to_find into Students without loops.
  1 comentario
per isakson
per isakson el 21 de Ag. de 2016
Is this what you are looking for
>> ismember( to_find, Students )
ans =
1 1
both are in the list of students.

Respuestas (0)

La pregunta está cerrada.

Community Treasure Hunt

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

Start Hunting!

Translated by