linear index to matrix index
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
yonatan s
el 1 de Feb. de 2018
Comentada: Andrei Bobrov
el 1 de Feb. de 2018
ola,
I have a matrix 1020x1294, and the linear index 475000. I can do the math by myself, but I'd like to know is there a function that calculates what is the row&column of this index in the matrix?
thanks
3 comentarios
Respuesta aceptada
Andrei Bobrov
el 1 de Feb. de 2018
ii = 475000;
m = size(A,1);
r = rem(ii,m);
c = ceil(ii/m);
0 comentarios
Ver también
Categorías
Más información sobre Matrix Indexing 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!