필터 지우기
필터 지우기

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 CenterFile Exchange에서 Legend에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by