access the row and col of a matrix
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Elysi Cochin
el 21 de Abr. de 2017
i have a matrix
A = [11 12 13
14 15 16
17 18 19];
now i take a value 6... how can i get the value there and and row and column....
eg: value = 16
row = 2
col = 3
0 comentarios
Respuesta aceptada
Más respuestas (2)
dbmn
el 21 de Abr. de 2017
2 Possibilities
Easiest: row column
A(2,3)
Second possibility (by element count)
A(8)
0 comentarios
Ver también
Categorías
Más información sobre Get Started with MATLAB 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!