figure

2 views (last 30 days)
mohamed  al-asklany
mohamed al-asklany on 25 Mar 2012
if i plot point(x) in a graph how can i remove it from graph

Accepted Answer

Wayne King
Wayne King on 25 Mar 2012
plot(randn(100,1));
hold on;
h = plot(5,3.5,'k*');
%%%then
reset(h)
  3 Comments
Ronald Kaptein
Ronald Kaptein on 27 Mar 2012
Use delete(h) instead of reset(h)
mohamed  al-asklany
mohamed al-asklany on 29 Mar 2012
if i want to move line in circular graph?

Sign in to comment.

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!