How to add a specific value with arrow or a marker in the axis of a plot?
3 views (last 30 days)
Show older comments
Ritabrata Chakraborty
on 13 Mar 2019
Commented: Ritabrata Chakraborty
on 17 Mar 2019
I have a 2D plot. I plotted a curve and the average of the data in the same plot. I want to write the average value beside the Y-axis to indicate the average value. How to write it ?
4 Comments
Jan
on 14 Mar 2019
@Ritabrata Chakraborty: Is this a comment to my answer? Does my answer solve the problem?
Accepted Answer
Jan
on 13 Mar 2019
x = rand(1, 10);
m = mean(x);
axes('XLim', [1, 10], 'NextPlot', 'add', 'Box', 'on');
plot(x, 'b');
yline(m, 'g');
text(10.01, m, 'Mean', ...
'Color', 'g', ...
'HorizontalAlignment', 'left', ...
'Units', 'data');
The creates the text slightly right from the axes.
More Answers (0)
See Also
Categories
Find more on Annotations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!