Hello! How can i delete a line from my figure?

24 views (last 30 days)
Hello! I have an image from which i would like to delete a line. How can i do that? When i use the delete() function it does not work. There is no error mentioned nor is the image changing.
Please help!

Accepted Answer

Image Analyst
Image Analyst on 28 Dec 2019
This should work
hLine = line(x, y, 'Color', 'r', 'LineWidth', 2);
% Now delete it.
delete(hLine);
  9 Comments
Walter Roberson
Walter Roberson on 29 Dec 2019
Yes, recording the handle will always be a better solution rather than findobj when it can be done. Sometimes though you are wanting to delete a line from a plot created by code you do not have control of, or from a stored fig that you cannot change the generation code for, and in those cases you would use findobj or findall
Stany Stone
Stany Stone on 30 Dec 2019
Thnak you so much for your answears!

Sign in to comment.

More Answers (0)

Categories

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