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

📄 erlang_b.m

📁 《通信系统仿真原理与无线应用》配套MATLAB源码
💻 M
字号:
% 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -