How do I connect plot points with lines using ginput?
    조회 수: 13 (최근 30일)
  
       이전 댓글 표시
    
I am trying to program a function called draw_constellation. By using ginput,the user would click on the figure and a plot point will appear. Any subsequent plot points would be connected with a line. My problem is connecting the third point with the second point and so on. Currently, the code I have only plots the first two points with a line.
Here is what I currently have:
function[] = draw_constellations
axis([0 100 0 100]);
set(gcf,'color','k');
set(gca,'color','k');
axis square;
hold on;
while 1 
    [x,y,button] = ginput(1);
      if button == 113
        break;             
      else
          hold on
          plot(x,y,'w*')
      end
      [xn,yn,button] = ginput(1);
      plot(xn,yn,'w*');
      plot([x,xn],[y,yn],'w');
end
댓글 수: 0
채택된 답변
  David Young
      
 2016년 2월 29일
        The attached function should show you how to do what you need, though you will have to modify it for your purpose.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
				Help Center 및 File Exchange에서 Data Exploration에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

