function z=cerchio(n)

k=1;
while(k<=n)
x=2*rand-1;
y=2*rand-1;
if (x^2+y^2<1)
 	z(k)=x+y*i;
	k=k+1;
end
end
end
