کد مورد نظر معمولاً برای توزیع کاربران زمینی در ارتباطات فروسو استفاده می‌شود. کد به صورت زیر است:

 n=100; % number of points that you want
 center = [1 ,2]; % center coordinates of the circle [x0,y0] 
 radius = 10; % radius of the circle

 angle = 2*pi*rand(n,1);
 r = radius*sqrt(rand(n,1));

 X = r.*cos(angle)+ center(1);
 Y = r.*sin(angle)+ center(2);

 plot(X,Y,'.k')