How to add values at blue dots in graphs?

3 views (last 30 days)
How to add values at blue dots in graphs?
to add values like this:

Accepted Answer

Ameer Hamza
Ameer Hamza on 28 Nov 2020
There is no general way. You can use text() to place the values, but to customize the location will require manual tweaking. For example
x = 0:5;
y = x.^2;
plot(x, y, '-o')
xlim([-0.1 5.1])
ylim([-2 25])
text(x+0.01, y-0.5, string(y))

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!