calcthroughput.asv
来自「It s a simulation for WCDMA Radio Networ」· ASV 代码 · 共 22 行
ASV
22 行
%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 + =
减小字号Ctrl + -
显示快捷键?