Hello, I am trying to plot circles and then get rid of the circles touching the axis as shown when you run my code. After this, I am trying to find the distance between these circles so as to know the circle that is farthest from the rest. THANKS
1 次查看(过去 30 天)
显示 更早的评论
%generate random numbers
%centers of circle
x = rand(100,1);
y = rand(100,1);
centers = [x y];
radii = 0.05.*ones(length(x),1);
% %clear the axis
cla
% %fix the axis limits
xlim([0 1])
ylim([0 1])
% %set the axis aspect ratio to 1:1
axis square
box on
%display the circles
viscircles(centers,radii, 'Color','k');
for i = 1:1:length(x)
if x(i) >= 0.9
x(i) =[];
y(i) =[];
end
end
%This is not working, though the circles are plotting well
0 个评论
采纳的回答
KSSV
2018-11-13
编辑:KSSV
2018-11-13
As you have the centers of circles (xnew,ynew) in hand..you can use distance formula/ pdist2/ pdist and get the distances between circles.
%generate random numbers
%centers of circle
x = rand(100,1);
y = rand(100,1);
centers = [x y];
radii = 0.05.*ones(length(x),1);
% %clear the axis
cla
% %fix the axis limits
xlim([0 1])
ylim([0 1])
% %set the axis aspect ratio to 1:1
axis square
box on
%display the circles
viscircles(centers,radii, 'Color','k');
idx = x<0.9 ;
xnew = x(idx) ;
ynew = y(idx) ;
3 个评论
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!