You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
284 B

% get random position in circle
function [res_x, res_y] = normrnd_circle(r)
while true
ang = 2*pi*rand(1);
t_r = normrnd(0, r);
res_x = t_r*cos(ang);
res_y = t_r*sin(ang);
if sqrt(res_x^2 + res_y^2) < r
break;
end
end