Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Im unable to get the coordinate locations of a node in a plotted graph....like if the node(124) is at the location (1,19) which is the x and y value of that node how do i get the x and y values for every node??

조회 수: 1 (최근 30일)
The graph has an x and y axis....so provided that every node must correspond to a location....so how do u retrieve this location

답변 (1개)

Robert
Robert 2016년 3월 30일
If you provide additional details on how you generated that plot, this community might be better able to help you. As a starting point, you should look at the 'Children' of your axis. If they are lines, they will have 'XData' and 'YData' properties you can access. Try
myHandles = get(gca,'Children')
myLine = myHandles(1) % assuming it is a line
x = get(myLine,'XData');
y = get(myLine,'YData');

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by