Trying to add horizontal line on a graph
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
So im trying to add a horizontal line to to show the mean gradient to the graph on the bottom.
The mean is -0.0714 and i want to draw this line as a dotted line. iv tried all sorts of things on this forum but cant seem to get it
Thanks in advance
0 commentaires
Réponses (1)
Walter Roberson
le 8 Nov 2016
XL = xlim();
plot( XL, [TheMean, TheMean])
2 commentaires
Walter Roberson
le 8 Nov 2016
Example:
plot(x,y)
x = 1:30;
y = sin(x)+x;
TheMean = mean(y);
plot(x,y)
hold on
XL = xlim();
plot(XL, [TheMean TheMean], 'g--')
hold off
Voir également
Catégories
En savoir plus sur Line Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!