Borrar filtros
Borrar filtros

i used find command to locate the position for a particular number. it just mentions the position. how to find the corresponding row and column of the number

1 visualización (últimos 30 días)
i used find command to locate the position for a particular number. it just mentions the position. how to find the corresponding row and column of the number a=[21 22 23;24 28 25;26 28 27]; i would like to know the row and column for number 28...

Respuesta aceptada

the cyclist
the cyclist el 4 de Jul. de 2013
Editada: the cyclist el 4 de Jul. de 2013
Use find() with two output arguments
[i,j] = find(a==28)
as described in the documentation
>> doc find

Más respuestas (0)

Categorías

Más información sobre Startup and Shutdown en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by