MATLAB: Changing Name Location of Points

graphsMATLABnamespoints

Hey Community,
i am trying to name points in graph. It is writing the correct description at almost the correct position. For better visiblity I want, that the description in the graph is very close to the point but not interacting with any line in the graph.
Currently I use the following statement to name the points
text(x_coord , y_coord , Number of the point, 'fontsize',15)
Is there any feasible solution for that problem?
Thanks in advance.

Best Answer

You can set backgroundcolor to your labels
x = linspace(0,10);
y = sin(x);
plot(x,y)
text(0.8,0.8,'he','backgroundcolor','r')