How can i update data in the figure window in MATLAB GUI using pushbutton callback?

1 vue (au cours des 30 derniers jours)
I have MATLAB GUI, which plots data in figure using pushbutton callback
Even though the figure window is updating the data for every iteration inside the for loop, it is not able to hold and display the data from previous iteration of the for loop.
I have tried 'hold on' option but it does not work for the GUI case
How can i fix it.
  6 commentaires
VBBV
VBBV le 23 Nov 2018
there is no cla, clf in the loop, the code structure is shown below
for i = 1: N
...
for j = 1 :X
...
...
...
end
semilogx(...)
end
Luna
Luna le 23 Nov 2018
Where is your hold on then?

Connectez-vous pour commenter.

Réponse acceptée

Jan
Jan le 23 Nov 2018
Modifié(e) : Jan le 23 Nov 2018
Instead of hold on prefer to create the axes with the wanted "accumulation" flag directly:
axes('NextPlot', 'add')
Now new line objects created by plot() do not replace the existing contents, but are added. Do this before the loop.
Does this help already?
  1 commentaire
VBBV
VBBV le 23 Nov 2018
Modifié(e) : VBBV le 26 Nov 2018
okay, found the solution myself from mathworks help documentation,
use hold(ax,'on') after the plot i.e.
for i = 1: N
...
for j = 1 :X
...
...
...
end
semilogx(...)
hold(ax,'on')
end
and it works fine, Thanks anyway for the response

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by