clear the ploted nodes only
    조회 수: 3 (최근 30일)
  
       이전 댓글 표시
    
 clear all
 N=20;
 area=100;
 hold on;
     for i=1:N
         hplot(i)=plot(X(i),Y(i));
         htext(i)=text(X(i),Y(i),num2str(i),'fontsize',10);
         hold on;
     end
I wish to clear the plotted node after pause(.1) only plotted nodes clear and not clear the N,XX,YY,BS,area and plotted bs after pause(.1)
댓글 수: 0
채택된 답변
  Michael Haderlein
      
 2015년 4월 22일
        delete(hplot)
댓글 수: 4
  Michael Haderlein
      
 2015년 4월 23일
				If you want to delete everything plotted in the axes, use
delete(get(gca,'children'))
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!





