Generate random circles in the square box with different diameters
조회 수: 4 (최근 30일)
이전 댓글 표시
I was able to generate random circles inside the square box of dimension L=1 with the same diameter without overlapping, where X and Y are between -0.5 to 0.5.
Now, I want to generate random circles with 3 different diameters and I need to save the location of X,Y and diameter for each circle. It would be nice if we have the same number of circles per each diameter.
If you have any idea how to do so, please help me. Thanks
댓글 수: 1
TRAN Quang Vu
2020년 7월 22일
Hello,
I want to generate random circles inside the square box of dimension L=1 with the same diameter without overlapping, where X and Y are between -0.5 to 0.5. Can you help me? Thansk you.
채택된 답변
Brendan Hamm
2015년 3월 13일
If you have k circles, then you can create three different areas (and thus different diameters) using:
k = 30;
X = rand(k,1) - 0.5;
Y = rand(k,1) - 0.5;
a = randi([1 3],k,1); %Random integers from discrete U([1,3])
s = scatter(X,Y,a);
If you want the same number of each diameter:
n = k/3; % May need to take floors if 3 is not a divisor of k
a = [5*ones(n,1); 10*ones(n,1); 15*ones(n,1)]; % Equal number of fives, tens, and fifteens
a = a(randperm(k)); % Shuffle the vector
s = scatter(X,Y,a);
randperm(k) permutes the integers 1:k, so I use this to randomly shuffle the values, although arguably if you were to specify the first ten observations were to be labeled size 5, and the next ten size 10, ... the (x,y) values are still random and there is no real need to do the permutation.
댓글 수: 2
DINESH CHANDRA
2016년 8월 16일
편집: Image Analyst
2016년 8월 16일
Is it possible that circles overlapping prior circles can be discarded?
Image Analyst
2016년 8월 16일
Of course. Just keep track of radii and centers. If the distance from the center of the next/proposed circle is within the sum of the two radii, then just don't add it. If x and y are arrays of the centers, then do something like:
% Get distances of (xNew, yNew) from all other circles
distances = sqrt((xNew-x).^2+(yNew-y).^2);
% Get sums of radii
radiiSums = radiusNew + r;
% See if we can add this new one
okToAdd = all(distances > radiiSums);
if okToAdd
x(end+1) = xNew;
y(end+1) = yNew;
r(end+1) = radiusNew;
end
추가 답변 (1개)
Image Analyst
2015년 3월 13일
See my attached demo. Adapt it as needed with the rand() function to make random radii.
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!