⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 reverselink.m

📁 This program shows the distributions of the co-channel interference in forward and reverse link in t
💻 M
字号:
% Reverse Link

close all
clear all

N = 1
n = 2
M = 10000;

MSPos = RandMS(M,1);
CelLoc = AdjCel1(N);

IntMS = RandMS(M,18)+ones(M,1)*CelLoc';
ds = (abs(MSPos)).^-n;
ditemp = (abs(IntMS)).^-n;
di = ditemp*ones(18,1);

SIR = 10*log(ds./di);
%EverageSIR = SIR*ones(1,M)/M
hist(SIR,-300:500)
title('pdf of SIR');
xlabel('SIR(dB)');
ylabel('pdf');

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -