if i plot point(x) in a graph how can i remove it from graph

 Réponse acceptée

Wayne King
Wayne King le 25 Mar 2012

1 vote

plot(randn(100,1));
hold on;
h = plot(5,3.5,'k*');
%%%then
reset(h)

3 commentaires

mohamed  al-asklany
mohamed al-asklany le 27 Mar 2012
reset(h) clear all graph i want to clear this point only of graph
Ronald Kaptein
Ronald Kaptein le 27 Mar 2012
Use delete(h) instead of reset(h)
mohamed  al-asklany
mohamed al-asklany le 29 Mar 2012
if i want to move line in circular graph?

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Phased Array System Toolbox dans Centre d'aide et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by