How to delete a plot in UIAxes?

6 visualizaciones (últimos 30 días)
Eduardo Gaona Peña
Eduardo Gaona Peña el 2 de Oct. de 2017
Comentada: David J. Mack el 7 de Feb. de 2018
I'm using a button as a tool to plot one linear fit over a curve and I would like to replace the plot of the fit whenever I push the button again. I'm not quite sure how to use the delete command in this case. Any help is appreciated :)

Respuesta aceptada

David J. Mack
David J. Mack el 3 de Oct. de 2017
Editada: David J. Mack el 3 de Oct. de 2017
You could store the handle to the fitted line in the UserData of the figure and then retrieve it every time the button is hit and use it to replace the YData of the line with the new fitted YData (this "replaces" the old line). Greetings, David
  2 comentarios
Jesus Velazquez
Jesus Velazquez el 1 de Feb. de 2018
any chance you could share an example of this?
David J. Mack
David J. Mack el 7 de Feb. de 2018
hFig = figure(); hPlot = plot(cfit); hFig.UserData.hPlot = hPlot; % Code to add the button
% in your callback hFig.UserData.hPlot.YData = newYData;

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Develop Apps Using App Designer 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!

Translated by