update one plot in appdesigner

1 Ansicht (letzte 30 Tage)
Leon
Leon am 19 Jun. 2022
Kommentiert: Rik am 20 Jun. 2022
In appdesigner, I have multiple plots, I want to update one or more. The initial plot owrks, the update not. How to do this??
Many thx form you help.
hold(app.UIAxes, 'on');
h1 = plot(app.UIAxes,(1:20),'*');
h2 = plot(app.UIAxes,(3:30),'*');
hold(app.UIAxes, 'off');
pause(5);
set(h1, 'XData', (1:20), 'YData', (20:1));
drawnow;

Akzeptierte Antwort

Rik
Rik am 20 Jun. 2022
This code should work, once you fix the creation of the vector: 20:-1:1.
  2 Kommentare
Leon
Leon am 20 Jun. 2022
Hello Rik,
Thx for your answer, I missed that one:-(
Rik
Rik am 20 Jun. 2022
No problem. It's a very easy mistake to make. I don't make it daily anymore, but I still ofter forget :-1:.
Maybe I should get in the habit of using :1: for upwards arrays, that way you can't forget :-1: when you need it.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Specifying Target for Graphics Output finden Sie in Help Center und File Exchange

Produkte


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by