How do I plot a random number of rectangles using rectangle('Position', [x y w h])?

5 views (last 30 days)
This is how I have tried. But it does not seem to work. As fast as I run the function, MATLAB gets in Busy-mode and never returns. What am I doing wrong?
function amount = draw_rectangle(b)
amount = b;
for j =1:b;
x = rand(1)*10;
y = rand(1)*10;
w = rand(1)*10;
h = rand(1)*10;
rectangle('Position', [x y w h])
hold on;
end
end
  4 Comments
Karokh Ibrahim
Karokh Ibrahim on 26 Feb 2013
Ok! I do not really know how to manipulate b in MATLAB so that it returns a random value and therefore a random amount of rectangles. Could someone help me with that?

Sign in to comment.

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 26 Feb 2013
Edited: Azzi Abdelmalek on 26 Feb 2013
close
hold on;
for k=1:randi(100);
rectangle('Position', 10*rand(1,4))
end
hold off

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!