How to clear a particular figure and replace it with other
    6 views (last 30 days)
  
       Show older comments
    
So I have got a curve f in green which I want to keep as it is. I have plot a blue circle over it. Now I want to clear this blue circle by keeping the green curve as it is and plot a new red circle over it. How should I do it?
clf
hold on
fplot(f,'g')
xlim([-1,3])
ylim([-2,2])
p1 = plot(0,0,'bo');

clf(p1,'reset')
p2 = plot(0,1,'ro');

0 Comments
Accepted Answer
  VBBV
      
      
 on 5 May 2021
        
      Edited: VBBV
      
      
 on 6 May 2021
  
      %f true
  clf
hold all
fplot(f,'g')
xlim([-1,3])
ylim([-2,2])
f1 = figure
plot(0,0,'bo');
clf(f1,'reset')
plot(0,1,'ro');
Reset using figure handles
More Answers (0)
See Also
Categories
				Find more on Creating, Deleting, and Querying Graphics Objects in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!