Plot multiple rectangles from set of points

5 ビュー (過去 30 日間)
Salem
Salem 2021 年 8 月 31 日
編集済み: DGM 2021 年 8 月 31 日
If I have set of points 1, 2 , 3, 4, 5 they are name by NUM. These points respresnts locations on x-axis. How can I plot rectangles for each point making each point the center of the rectangles?

採用された回答

DGM
DGM 2021 年 8 月 31 日
編集済み: DGM 2021 年 8 月 31 日
Is this what you mean?
C = [1 1; 2 4; 3 2]; % center locations [x y]
for c = 1:size(C,1)
r = 0.5+rand(1,2)*0.5;
plot(C(c,1)+[-1 1 1 -1 -1]*r(1),C(c,2)+[-1 -1 1 1 -1]*r(2)); hold on
end

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2021 年 8 月 31 日
bar()

カテゴリ

Help Center および File ExchangeLinear and Nonlinear Regression についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by