Plotting in a specific range
Afficher commentaires plus anciens
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 commentaires
Torsten
le 24 Mai 2021
plot(Res(:,1),Res(:,3))
xlim([21,50])
ILAYDA GULSEN KOCAK
le 25 Mai 2021
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Annotations dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!