How do I find the cell index ??
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
BHUKYA VENKATESH
el 27 de Jun. de 2022
Comentada: BHUKYA VENKATESH
el 27 de Jun. de 2022
I have a cell A{3}={[1 2 3 1]} {[5 6 7 5 0]} {[9 9 10 10 12]}
I want to find the the cell number that contain 12
that is A{3}
is there any code that finds the cell number??
I dont want to use any kind of loop here.
3 comentarios
Respuesta aceptada
madrix
el 27 de Jun. de 2022
A={[1 2 3 1],[5 6 7 5 0],[9 9 10 10 12]};
rem = cellfun(@(x) find(x == 12),A,'un',0);
idx = cellfun('isempty',rem);
find(~idx)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Multidimensional Arrays en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!