How can I incrementally plot multiple Rectangles in a [X Y Width Height] field?

I want incremental rectangle plots on a (ExtractedX, ExtractedY) graph currently, I have...
PED_fld = [132 210 75 80]
figure
plot(ExtractedX, ExtractedY);
rectangle ('position', PED_fld); %PED
This give me a rectangle spanning [132 210 75 80] or [X Y Width Height]
but I want multiple equally spaced rectangles in this range, not one

 採用された回答

KALYAN ACHARJYA
KALYAN ACHARJYA 2020 年 1 月 22 日
編集済み: KALYAN ACHARJYA 2020 年 1 月 22 日
for i=1:10
PED_fld=[132+i 210-i 75 80]
rectangle('position', PED_fld); %PED
hold on;
end

5 件のコメント

Su
Su 2020 年 1 月 22 日
Thank you! This seems much closer, however this code is giving me the figure alone, and the rectangles alone, and no loger plots the rectangle on the graph. Such is an example of the desired effect
Screen Shot 2020-01-22 at 1.35.45 PM.png
for i=1:10
PED_fld=[132+i 210+i 75 80]
rectangle('position', PED_fld); %PED
hold on;
end
71.png
Su
Su 2020 年 1 月 22 日
yes, I got this figure, but can it be plotted on the graph such as the picture I attatched in my response?
I have no data
plot(ExtractedX, ExtractedY);
Su
Su 2020 年 1 月 23 日
Is there a possibilty of the rectangle figure not being 4 dimesional and a flat incremental plot as in the picture i drew

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File Exchange2-D and 3-D Plots についてさらに検索

製品

質問済み:

Su
2020 年 1 月 22 日

コメント済み:

Su
2020 年 1 月 23 日

Community Treasure Hunt

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

Start Hunting!

Translated by