Drawing line between elements with same values in a 2D matrix

10 visualizaciones (últimos 30 días)
James Lorringer
James Lorringer el 15 de Sept. de 2015
Comentada: Joseph Cheng el 15 de Sept. de 2015
Hello community! I have a 2d Matrix:
A = [1 2 3 4 5 6;1 3 5 4 6 9;4 1 3 8 7 5];
it looks then like
1 2 3 4 5 6
1 3 5 4 6 9
4 1 3 8 7 5
Now I want to draw lines between elements with value = 1 and value = 3 and mark these values on the line.
Besides, in the plot, the columns of the matrix should be labeled in form of a x axis by
x = 8:13;
and the rows of the matrix should be labeled in form of a y axis by
y= 2:0.1:2.2;
Can someone please help me on this? Thanks a lot!

Respuestas (1)

Joseph Cheng
Joseph Cheng el 15 de Sept. de 2015
clf
A = [1 2 3 4 5 6;1 3 5 4 6 9;4 1 3 8 7 5];
y = 2:0.1:2.2;
x = 8:13;
[X Y] = meshgrid(x,y);
[oI]= find(A==1);
[tI]= find(A==3);
figure(1),hold on
plot(X(oI),Y(oI),'rx')
plot(X(tI),Y(tI),'bx')
%gen lines
for ind = 1:length(oI)
for jind = 1:length(tI)
plot([X(oI(ind)) X(tI(jind))],[Y(oI(ind)) Y(tI(jind))],'g')
end
end
  2 comentarios
James Lorringer
James Lorringer el 15 de Sept. de 2015
Thanks, but this is what I got
Could you please may be do some modifications?
Joseph Cheng
Joseph Cheng el 15 de Sept. de 2015
shouldn't you be doing the modifications? Based on your description that's what you described. You'll have to put in some effort.

Iniciar sesión para comentar.

Categorías

Más información sobre Mathematics 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!

Translated by