필터 지우기
필터 지우기

How to evaluate the union area of the multiple circles plotted in matrix form of centers and radii?

조회 수: 3 (최근 30일)
Specially looking for the area inside the rectangle covered by the union of circles...

채택된 답변

Matt J
Matt J 2022년 3월 7일
편집: Matt J 2022년 3월 7일
An approximate calculation can be made as follows,
C={centreG1,centreG2,centreG3,centreG4,centreG5,centreG6};
p=cellfun(@polycircle,C,{radii});
Area=area(union(p))
function p=polycircle(center,R)
p=translate( nsidedpoly(1e4,'Radius',R), center);
end
  댓글 수: 13
Rohan Shinde
Rohan Shinde 2022년 3월 8일
@Matt J how to plot {area(intersect(union(p),rect))} this area???
and also kindly check the above link for another question i have uploaded...

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Steven Lord
Steven Lord 2022년 3월 7일
A different approach, one that doesn't involve cell arrays or cellfun:
center = randi(10, 6, 2); % 6 circle centers
radius = randi(5, 6, 1); % 6 circle radii
% Iterate backwards so the first assignment to C allocates
% the right number of elements
for whichCircle = size(center, 1):-1:1
% Approximate each circle with a 1000-sided polyshape
C(whichCircle) = nsidedpoly(1e3, ...
'Center', center(whichCircle, :), ...
'Radius', radius(whichCircle));
end
plot(C)
axis equal
A = area(union(C))
A = 162.1206
  댓글 수: 3
Steven Lord
Steven Lord 2022년 3월 7일
This sample code focused on creating some sample circles. You can take it and adapt it to suit your additional requirements.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Line Plots에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by