draw a label in the scatter graph

조회 수: 1 (최근 30일)
Lev Mihailov
Lev Mihailov 2020년 1월 28일
답변: Cam Salzberger 2020년 1월 28일
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