gpt4 book ai didi

matlab - 如何在matlab中制作圆圈并在其中生成随机点

转载 作者:太空宇宙 更新时间:2023-11-03 19:33:08 24 4
gpt4 key购买 nike

enter image description here你好我想问一个问题如何在 matlab 中制作一个圆并标记它的中心并在其中生成一定数量的随机点例如 50?我知道这个代码可以做一个圆圈

x = linspace(-sqrt(10),sqrt(10));
y1 = sqrt(10-x.^2);
y2 = -sqrt(10-x.^2);
plot(x,y1,x,y2)
axis equal
hold on

但我不知道如何在其中生成 50 个随机点然后我想到了这个伪代码,但我不知道如何在 matlab 中编写它

01: FOR all nodes j
02: FOR all nodes i except node j
03: IF distance(j to center) < distance(j to i) AND
04: distance(i to cell center) < distance(j to i)
05: THEN there's a red link from node i to node j
06: ELSEIF distance(j to cell center) < distance(j to i)
07: THEN there's a blue link from node i to node j
08: ELSE there's no D2D link from node i and j;
09: node i has a green link with the base station
10: END if
11: END inner for-loop

最佳答案

认为这就是您需要的 -

%%// Plot the circle
x = linspace(-sqrt(10),sqrt(10));
y1 = sqrt(10-x.^2);
y2 = -sqrt(10-x.^2);
plot(x,y1,x,y2)
axis equal

%%// Choose from 1000 random point pairs
N = 1000;
%%// Radius of circle
radius = sqrt(10);

%%// Create a random point matrix Nx2
points_mat = [ radius*2*(rand(N,1)-0.5) radius*2*(rand(N,1)-0.5)];

%%// Select the first 50 pairs that lies inside circle
ind1 = find(sqrt( points_mat(:,1).^2 + points_mat(:,2).^2 )<radius);
points_mat=points_mat(ind1(1:50),:);

%%// Plot the 50 points on the circle
hold on
text(0,0,'x Center') %%// Center
text(points_mat(:,1),points_mat(:,2),'o') %%// 50 points

绘图

enter image description here

关于matlab - 如何在matlab中制作圆圈并在其中生成随机点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22768349/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com