how do i check if line in plot exists and if yes delete it otherwise nothing
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jakub
el 6 de Nov. de 2012
Respondida: Sonima
el 24 de En. de 2019
I have GUI with some plots. and in the plot there migt be lines in it. and when i pres certain button i want to check if there are some lines in plot and if so delete them. if there arent any do nothing... Thanks for help!
0 comentarios
Respuesta aceptada
Arthur
el 6 de Nov. de 2012
Dirty way:
cla(axes_handle)
If you know the handle of the line:
if ishandle(line_handle)
delete(line_handle)
end
if you don't know the line handle, use get(axeshandle,'Children') to find it.
0 comentarios
Más respuestas (1)
Sonima
el 24 de En. de 2019
Hi!
I want to do the same, delete a line if exist in a plot in a fuction.
I used the suggeste code
if ishandle(line_handle)
delete(line_handle)
end
But I got the error:
Undefined function or variable 'line_handle'.
How can I fix it?!
0 comentarios
Ver también
Categorías
Más información sobre Line Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!