MATLAB: Plot many filled circles

circleplot

Hello,
I have n points and each of them has a radius. For each point $i$, i want to plot a filled circle with raduis r(i). I used viscircles to plot the circles but i can not arrive to color the inside of circles. How i can do that?
Thank you all,
Sincerely, Heborvi

Best Answer

p= [0 0;1 2;-2 1;4 -2;-3 -3];
r=[1 2 3 4 5]
alpha=-pi:0.01:pi
x=cos(alpha)
y=sin(alpha)
for ii=1:numel(r)
fill(r(ii)*(x-p(ii,1)),r(ii)*(y-p(ii,2)),'r')
hold on
end