Borrar filtros
Borrar filtros

Searching the location of a specific cell in a cell array

1 visualización (últimos 30 días)
Hello community! I have a cell array (1x1000) like this {[1 2], [3 5], [4,2],..., [2 5]} I found the most commonly occurring cell in this, but now I want to find the positions of this cell. Example what is the position of cell [2 5]? and the answer I want to be the (1, 100) (1,205) (1,276) etc
Please help, if anyone knows.

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 8 de Mayo de 2013
Editada: Azzi Abdelmalek el 8 de Mayo de 2013
v={[1 2], [3 5], [4,2],[3 5] ,[4 2]}
w=cell2mat(v')
idx=find(ismember(w,[4,2],'rows'))
  3 comentarios
Azzi Abdelmalek
Azzi Abdelmalek el 9 de Mayo de 2013
v={[1 2], [3 5], [4,2],[3 5],[],[4 2]}
idx=find(cellfun(@(x) isequal(x,[4,2]),v))
nicolas
nicolas el 9 de Mayo de 2013
its working! Thank you so much

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by