Generate random coordinates around a circle
显示 更早的评论
How can I generate 15 random 2-D coordinates around a circle of radius R with the center of the circle being a defined [x y] 2-D coordinate? Thanks
4 个评论
Cedric
2013-7-31
What have you tried so far?
John
2013-7-31
Richard Brown
2013-7-31
Hint: polar coordinates
John
2013-7-31
回答(2 个)
Azzi Abdelmalek
2013-7-31
编辑:Azzi Abdelmalek
2013-8-1
x0=10; % x0 an y0 center coordinates
y0=20;
radius=10; % radius
angle=-pi:0.1:pi;
angl=angle(randperm(numel(angle),15));
r=rand(1,15)*radius;
x=r.*cos(angl)+x0;
y=r.*sin(angl)+y0;
xc=radius.*cos(angle)+x0;
yc=radius.*sin(angle)+y0;
scatter(xc,yc,'.r')
hold on
scatter(x,y)
xlim([-radius radius]+x0)
ylim([-radius radius]+y0)
axis square
hold off
2 个评论
Richard Brown
2013-8-1
编辑:Richard Brown
2013-8-1
Again, you're choosing from an artificially finite set (63) of evenly spaced angles there. Also, this method will cluster points near the centre of the circle.
John
2013-8-1
Azzi Abdelmalek
2013-7-31
编辑:Azzi Abdelmalek
2013-7-31
x0=10; % x0 and y0 are center coordinates
y0=20;
r=1; % radius
angle=-pi:0.1:pi;
angl=angle(randi(numel(angle),15,1))
x=r*cos(angl)+x0
y=r*sin(angl)+y0
scatter(x,y)
xlim([-r r]+x0)
ylim([-r r]+y0)
axis square
5 个评论
Richard Brown
2013-7-31
I presume you mean
angl = 2*pi*rand(1, 15)
John
2013-7-31
Richard Brown
2013-7-31
编辑:Richard Brown
2013-7-31
I seem to recall Roger Stafford answering this very question maybe yesterday? Could be worth trawling through recent questions to have a look. edit Actually, it was a while ago, but it got updated yesterday:
Azzi Abdelmalek
2013-7-31
Do you mean inside the circle?
Azzi Abdelmalek
2013-7-31
Richard, I think it's better to use randperm, with rand or randi there is a risk to have repetition
类别
在 帮助中心 和 File Exchange 中查找有关 Random Number Generation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!