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

3 visualizaciones (últimos 30 días)
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

Respuesta aceptada

KALYAN ACHARJYA
KALYAN ACHARJYA el 22 de En. de 2020
Editada: KALYAN ACHARJYA el 22 de En. de 2020
for i=1:10
PED_fld=[132+i 210-i 75 80]
rectangle('position', PED_fld); %PED
hold on;
end
  5 comentarios
Su
Su el 23 de En. de 2020
Is there a possibilty of the rectangle figure not being 4 dimesional and a flat incremental plot as in the picture i drew

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by