draw a label in the scatter graph
3 views (last 30 days)
Show older comments
Hello! I have a scatter graph
scatter( x, y, [] , z, 's', 'filled') %
I have x and y coordinates where should the label be, how do I make it?
scatter( x, y, [] , z, 's', 'filled')
hold on
scatter( a, b, [] , c, 's', 'filled')
hold off % this option does not fit, the values of 'c' are much greater than 'z'
0 Comments
Answers (1)
Cam Salzberger
on 28 Jan 2020
You can use the text function to put labels at x-y coordinates. Name-value pairs can be used to determine where to place the labels relative to the coordinates (e.g. left, right, centered, etc.).
text(x, y, ["my" "labels" "etc..."])
I'm not sure what you were trying to do with a, b, and c in the above code, or if you have a separate question about that.
-Cam
0 Comments
See Also
Categories
Find more on Scatter Plots in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!