connecting every two endpoints

조회 수: 9 (최근 30일)
tarsis
tarsis 2013년 11월 12일
편집: Walter Roberson 2017년 4월 27일
Hi all, I have the following formula that allow me to plot 2D points calculated from a text file.
plot(endpnts(:,1),scyendpnts,'sr', 'MarkerSize',5,'MarkerFaceColor', 'b', 'MarkerEdgeColor', 'none'); %plot all endpoints a red dots
plot(endpnts(R,1),scyendpnts(R),'sr', 'MarkerSize',5, 'MarkerFaceColor', 'b', 'MarkerEdgeColor', 'none');
I'm trying to also connect the points two by two with a line, like (4:1) with (5:1), (6:1) with (7:1) and so on but can't figure out how - by using the statement bellow I can draw a line between all points.
hold on;
plot(endpnts(:,1),scyendpnts,'LineWidth',2, 'MarkerFaceColor','b');
plot(endpnts(R,1),scyendpnts,'LineWidth',2, 'MarkerFaceColor','b')
I thank you in advance
Tarsis

채택된 답변

Walter Roberson
Walter Roberson 2013년 11월 12일
plot(endpnts(:,1),scyendpnts,'sr', 'MarkerSize',5,'MarkerFaceColor', 'b', 'MarkerEdgeColor', 'none');
is enough to draw lines between each pair of points, with red square markers.
I am not sure what more you want done? Do you want a line connecting the last point to the first? If so then
plot(endpoints([1:end 1],1), scyendpnts([1:end 1]), 'sr', 'MarkerSize',5,'MarkerFaceColor', 'b', 'MarkerEdgeColor', 'none');
Are you trying to connect every point to every other point, so point 4 is connected to point 1, 2, 3, 5, 6, etc?
  댓글 수: 5
Walter Roberson
Walter Roberson 2013년 11월 13일
x = reshape(endpnts(4:end,1), 2, []);
y = reshape(scyendpnts(4:end), 2, []);
Just watch out that the number of remaining points is even (so the number of original points must be odd); if it is not then the above code will crash trying to match up the last entry.
tarsis
tarsis 2013년 11월 13일
Awesome, thanks again.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Seyedfarid Ghahari
Seyedfarid Ghahari 2017년 4월 27일
Hi,
Is there any automatic way to connect points to each other as 1 to 2, 3 to 4, 5 to 6, ... without using for. In other words, I have Xi, Yi, Zi and Xj, Yj, and Zj vectors which contain X, Y, and Z coordinates of start (i) and end (j) of many lines. I would like to draw these lines, but if I use:
plot3([Xi,Xj],[Yi,Yj],[Zi,Zj])
Matlab connects all lines, while I want to have all lines disconnected!
  댓글 수: 2
Walter Roberson
Walter Roberson 2017년 4월 27일
That is what my answer above does: reshape into columns of length 2, and MATLAB will draw each column as a distinct line.
Seyedfarid Ghahari
Seyedfarid Ghahari 2017년 4월 27일
By doing this, all points are connected in series. That is, 1 is connected to 2, 2 to 3, 3 to, ... while I do not want any connection between 2 and 3 or between 4 and 5 etc. I figured it out: I used NaN at every two points;)

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Graphics Object Programming에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by