how to delete an object in a plot using the delete button in keyboard

3 views (last 30 days)
Hi all,
I want to delete an object I created in a plot using the delete button. I created a GUI with a plot plotting a figure as described by the following:
t = 0:pi/5:2*pi;
figure
patch(sin(t),cos(t),'y')
axis equal
Now how should I delete it using the delete button?
Thanks
Viv
  2 Comments
Mahdi
Mahdi on 26 Mar 2013
What do you want to delete? Do you want to delete the whole plot? Close the figure?
Why do you want to use the delete button? Why not close, or alt+F4?
Vivekram
Vivekram on 26 Mar 2013
Hi Mahdi, I want to delete the polygon object inside the plot and not the plot itself.
Thanks
Viv

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 26 Mar 2013
Use the figure KeyPressFcn or WindowKeyPressFcn callback. Test the received key. If it is the delete character, then delete() the object handle.
  8 Comments

Sign in to comment.

More Answers (0)

Categories

Find more on Graphics Object Programming 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!