Effacer les filtres
Effacer les filtres

How can I locate the legend of specific points close to each of them in a plot ?

2 vues (au cours des 30 derniers jours)
I want to plot the legend of each point close to those as in this example, but I couldn´t. Thanks in advance.

Réponses (1)

Chunru
Chunru le 15 Août 2021
You can use "text" command to accomplish it. Code below show you the idea:
% Generate some data (similar but different from yours)
theta = 22.5:45:360;
x = cosd(theta); y=sind(theta);
l = "T"+(1:length(theta)); % specify label
plot(x, y, 'o');
text(x+0.03, y, l)

Community Treasure Hunt

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

Start Hunting!

Translated by