フィルターのクリア

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

1 回表示 (過去 30 日間)
KD
KD 2021 年 12 月 8 日
回答済み: Voss 2021 年 12 月 8 日
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.

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by