Plot different Y values for certain range of X
Afficher commentaires plus anciens
Let's say I have:
X = [1:10];
Y = [10:20];
I want to plot Y vs X, but in the range of X=[5:10] I want Y values to be (Y+20). And have the same plot line for all.
How can I do it?
Réponses (1)
Jonas
le 7 Mai 2022
you can just calculate the values before plotting
Y(X>=5 & X<=10)=Y(X>=5 & X<=10)+20;
1 commentaire
Paz Yedidim
le 7 Mai 2022
Catégories
En savoir plus sur 2-D and 3-D Plots 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!