draw a label in the scatter graph

2 Ansichten (letzte 30 Tage)
Lev Mihailov
Lev Mihailov am 28 Jan. 2020
Beantwortet: Cam Salzberger am 28 Jan. 2020
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'

Antworten (1)

Cam Salzberger
Cam Salzberger am 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

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by