资源简介

仿真源码包括了多层异构蜂窝网络中基于齐次泊松点过程(HPPP)的建模方法,一篇介绍该模型的12年发表在IEEE trans的论文。以及传统六边形建模方法和信道增益矩阵的计算。

资源截图

代码片段和文件信息

function [] = Channel_Gain(Cell_NumberUE_Coords_xUE_Coords_yEnodeBs)
%函数功能:建立小区拓扑图,计算给定坐标点与所选基站间的信道增益
%参数说明:
%Input args
%Cell_Number:需要建立拓扑的边长,实际画出Cell_Number^2个小区
%UE_Coords_x:UE横坐标
%UE_Coords_y:UE纵坐标
%EnodeBs:所选小区序号
%Output args
%Distance:输入坐标与选定小区基站间距离
%H:信道增益
%% Create EnodeBs
theta = linspace(02*pi7); %产生从0~2*pi的7点矢量,将360度6等分成每个60°
r=1;    %小区半径为1
Bs_Location=zeros(12Cell_Number^2);%建立基站坐标矩阵

for i=0:Cell_Number-1   %画出蜂窝拓扑
    for j=0:Cell_Number-1
        x=i*1.5;
        y=(j+mod(i2)/2)*sqrt(3);
        Bs_Location(::i*Cell_Number+j+1)=[xy];
        Topology=plot(r*cos(theta)+xr*sin(theta)+y‘b-‘);
        set(Topology‘LineWidth‘1.5); %线条加粗
        hold on;
    end
end
for i=1:Cell_Number^2   %标注小区序号
    text(Bs_Location(11i)-0.1Bs_Locat

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     671907  2013-06-20 16:55  HPPP model\A tractable approach to coverage and rate in cellular network.pdf

     文件       1656  2013-04-10 16:45  HPPP model\Channel_Gain.m

     文件        774  2013-04-15 09:21  HPPP model\HPPP.m

     目录          0  2013-08-02 15:35  HPPP model

----------- ---------  ---------- -----  ----

               674337                    4


评论

共有 条评论