フィルターのクリア

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

2 ビュー (過去 30 日間)
I want to plot the legend of each point close to those as in this example, but I couldn´t. Thanks in advance.

回答 (1 件)

Chunru
Chunru 2021 年 8 月 15 日
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)

カテゴリ

Help Center および File ExchangeLegend についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by