How can I incrementally plot multiple Rectangles in a [X Y Width Height] field?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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
0 Kommentare
Akzeptierte Antwort
KALYAN ACHARJYA
am 22 Jan. 2020
Bearbeitet: KALYAN ACHARJYA
am 22 Jan. 2020
for i=1:10
PED_fld=[132+i 210-i 75 80]
rectangle('position', PED_fld); %PED
hold on;
end
Weitere Antworten (0)
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

