erlang_b.m

来自「無線通訊系統仿真原理與應用 詳細介紹通訊的仿真方法」· M 代码 · 共 20 行

M
20
字号
% File: erlanb_b.m
% Software given here is to accompany the textbook: W.H. Tranter, 
% K.S. Shanmugan, T.S. Rappaport, and K.S. Kosbar, Principles of 
% Communication Systems Simulation with Wireless Applications, 
% Prentice Hall PTR, 2004.
%
function erb = erlang_b(A,c)
% A = offered traffic in Erlangs.
% c = number of truncked channels.
num = A^c;
sum = 0;
for k=0:c
   kfact = prod(1:k);
   term = (A^k)/kfact;
   sum =sum + term;
end
cfact = prod(1:c);
den = cfact*sum;
erb = num/den;
% End of function file.

⌨️ 快捷键说明

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