资源简介
matlab中处理OFDMA的资源分配,包括子载波分配和功率分配.是LTE系统中的以最大化系统吞吐量为目的
代码片段和文件信息
% %**************************************************************************
% Functionfile: calu_deRIV.m
% Description:
% The program is used to caculate the starting visual resource block(VRB) number
% and a length in terms of contiguously allocated resource blocks.
%
%
%
% ***************************************************************************
%
% %*******************Pseudo Code*******************************************
% RIV: resource indication value
% N_DL_VRB: number of visual resource blocks in the downlink
% L_CRBS: length in terms of contiguously allocated resource blocks
% RB_start: starting visual resource block(VRB) number
% ************************************************************************%
function [L_CRBSRB_start]=calu_deRIV(RIVN_DL_VRB)
a=floor(RIV/N_DL_VRB)+1;
b=mod(RIVN_DL_VRB);
if a+b>N_DL_VRB
L_CRBS=N_DL_VRB+2-a;
RB_start=N_DL_VRB-1-b;
else
L_CRBS=a;
RB_start=b;
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 984 2009-12-14 20:30 resource_allocation\calu_deRIV.m
文件 1364 2009-12-14 20:29 resource_allocation\calu_NGap.m
文件 1185 2009-12-14 20:30 resource_allocation\resource_allocation0.m
文件 2028 2009-12-14 20:30 resource_allocation\resource_allocation1.m
文件 4206 2009-12-14 20:31 resource_allocation\resource_allocation2.m
目录 0 2009-12-14 20:27 resource_allocation
----------- --------- ---------- ----- ----
9767 6
评论
共有 条评论