Plotting in a specific range

2 Ansichten (letzte 30 Tage)
ILAYDA GULSEN KOCAK
ILAYDA GULSEN KOCAK am 24 Mai 2021
lets say i have this simple code:
Res=[];
for i=10:2:50
for t=1:1:3
y=i*t
Res=[Res; i t y ]
end
end
How can I plot i-y curve but only when i>20 ?
  2 Kommentare
Torsten
Torsten am 24 Mai 2021
plot(Res(:,1),Res(:,3))
xlim([21,50])
ILAYDA GULSEN KOCAK
ILAYDA GULSEN KOCAK am 25 Mai 2021
thank you very much , it worked.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Fangjun Jiang
Fangjun Jiang am 24 Mai 2021
index=Res(:,1)>=20;
plot(Res(index,1),Res(index,3))

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by