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

7 views (last 30 days)
%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

Accepted Answer

KSSV
KSSV on 13 Nov 2018
Edited: KSSV on 13 Nov 2018
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 Comments

Sign in to comment.

More Answers (0)

Categories

Find more on Performance and Memory 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!