is anyone know, how to know the matrix coordinate..?
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
is anyone know, how to know the matrix coordinate..?
a = [1 1 0; 0 0 0; 0 0 1;];
1 have coordinate on, (1,1) (1,2) and (3,3)
how to know the matrix coordinate..?
0 comentarios
Respuesta aceptada
Wayne King
el 1 de Dic. de 2013
Editada: Wayne King
el 1 de Dic. de 2013
a = [1 1 0; 0 0 0; 0 0 1;];
idx = find(a==1); % linear coordinates
[I,J] = ind2sub(size(a),idx);
The I,J pairs are the "matrix coordinates"
0 comentarios
Más respuestas (2)
Azzi Abdelmalek
el 1 de Dic. de 2013
In your case, you have only 1 and 0
a = [1 1 0; 0 0 0; 0 0 1;];
[ii,jj]=find(a)
0 comentarios
Ver también
Categorías
Más información sobre Resizing and Reshaping Matrices 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!