draw a label in the scatter graph

2 次查看(过去 30 天)
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'

回答(1 个)

Cam Salzberger
Cam Salzberger 2020-1-28
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

类别

Help CenterFile Exchange 中查找有关 Scatter Plots 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by