How to put labels to each points? And the labels are the value of each points?

1 次查看(过去 30 天)
x = [4 9 11 2 4];
y = [10 7 2 2 10];
x(end+1)=x(1);
y(end+1)=y(1);
area=polyarea(x,y);
str=sprintf('Area of the Polygon is : %d', area);
plot(x,y, 'g'), title(str, 'FontSize', 16);

回答(1 个)

Voss
Voss 2021-12-8
Look into text.

Community Treasure Hunt

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

Start Hunting!

Translated by