clear the ploted nodes only
    3 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    singh
      
 el 22 de Abr. de 2015
  
 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 comentarios
Respuesta aceptada
  Michael Haderlein
      
 el 22 de Abr. de 2015
        delete(hplot)
4 comentarios
  Michael Haderlein
      
 el 23 de Abr. de 2015
				If you want to delete everything plotted in the axes, use
delete(get(gca,'children'))
Más respuestas (0)
Ver también
Categorías
				Más información sobre Graphics Objects 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!





