Adressing

2 visualizaciones (últimos 30 días)
developer
developer el 27 de Sept. de 2011
Hello, If i have:
A=[1 2 3 ;7 5 3;9 8 3;11 53 45]
A =
1 2 3
7 5 3
9 8 3
11 53 45
and i do
>> A(9)
ans =
3
How can i know the row and coloumn through its index value ???
Thanks

Respuesta aceptada

Fangjun Jiang
Fangjun Jiang el 27 de Sept. de 2011
help sub2ind
help ind2sub
[row,col]=ind2sub(size(A),9)
I guess you mean this:
A=[1 2 3 ;7 5 3;9 8 3;11 53 45];
[Row,Col]=find(A==9)
  3 comentarios
Fangjun Jiang
Fangjun Jiang el 27 de Sept. de 2011
What do you mean? You can't run this?
A=magic(3);[row,col]=ind2sub(size(A),9)
Fangjun Jiang
Fangjun Jiang el 27 de Sept. de 2011
Okay, I see! See update.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by