资源简介

空间泊松点过程画图 泰森多边形 matlab

资源截图

代码片段和文件信息

%%%% -----PPP作图----- %%%%
%%%% Part1 %%%%
Lambda = 20;  % Lambda:poisson(Lambda)
v = exp(-Lambda)   %判定条件
u = unifrnd(01)
N = 0;
while u >= exp(-Lambda)
    u = u*unifrnd(01);
    N=N+1;
end 
N    %取点个数
poissrnd(Lambda1N)
% % POISSON点的分布图
% x = 0:N;
% y = poisspdf(xLambda);
% plot(xy‘+‘)

%%%% Part2 %%%%
a = 0;c = 0;b = 100;d =100;%取[0100]*[0100]的布点区域;
M = N;
% A = [];
% B = [];
while N > 0      %%scatter in the [0100]*[0100]
    N = N-1;
    u1 = unifrnd(01);
    A(M-N) = (b-a)*u1;
    u2 = unifrnd(01);
    B(M-N) = (d-c)*u2;
    figure(1)     %%base stations 分布图
    plot(A(M-N)B(M-N)‘rP‘);
    hold on;
end
%Voronio作图
figure(2)   %poisson-voronio图
[VxVy] = voronoi(AB);
h = plot(VxVy‘-‘AB‘rP‘);
set(h(1:end-1)‘xliminclude‘‘off‘‘yl

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1004  2020-07-27 16:28  PPP_Vor.m

评论

共有 条评论