📄 calcthroughput.m
字号:
%CALCTHROUGHPUT calculates cell throughput, deals it to perf.ThroughputUL and DL
%
%Authors: Jaana Laiho-Steffens (jls), Achim Wacker (AWa)
%
%Revision: 5.0.0cd Date: 17-Jul-2001
%
%needed m-files: Calcm_RDL.m
Calcm_RDL
for k = 1:numBSs
thputUL(k) = perf(k).mUL*perf(k).RUL;
thputDL(k) = perf(k).mDL*perf(k).RDL;
end
thputUL = num2cell(thputUL);
thputDL = num2cell(thputDL);
[perf.throughputDL] = deal(thputDL{:});
[perf.throughputUL] = deal(thputUL{:});
clear thputUL thputDL;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -