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
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!