Can I make addpoints function show me more than one curve in ONE figure ?

6 Ansichten (letzte 30 Tage)
and got the answer from @ Walter Roberson, but now I modified the question as in the code below,,Can I use the addpoints function to show me
x1(i), x2(i), x3(i), and x4(i)
in ONE figure BUT seperated (Splitted curves in one figure) ?
Thanks in advance
while 1
for i=1:20
x1(i)=something
x2(i)=something
x3(i)=something
x4(i)=something
end
plot(x,i)
end

Akzeptierte Antwort

Steven Lord
Steven Lord am 24 Aug. 2022
So you want multiple animated lines in the same figure? That's easy, just use multiple animatedline objects.
x = 0:360;
axis([0 360 -1 1]);
hold on
s = animatedline('Color', 'r', 'DisplayName', 'sine');
c = animatedline('Color', 'c', 'DisplayName', 'cosine');
legend show
for k = 1:numel(x)
addpoints(s, x(k), sind(x(k)));
addpoints(c, x(k), cosd(x(k)));
pause(0.01)
end
  1 Kommentar
omar th
omar th am 25 Aug. 2022
Thank you so much, its just ancrease the number of animated lines and addpoints functions seperatedly. Its worked thanks again

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Animation finden Sie in Help Center und File Exchange

Produkte


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by