LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
pfqn_xzabalow.m
1%{
2%{
3 % @file pfqn_xzabalow.m
4 % @brief Lower ABA (asymptotic bound analysis) bound on throughput. Not the Zahorjan-Balanced bound (that is pfqn_xzgsblow); single-class only.
5%}
6%}
7
8%{
9%{
10 % @brief Lower ABA (asymptotic bound analysis) bound on throughput. Not the Zahorjan-Balanced bound (that is pfqn_xzgsblow); single-class only.
11 % @fn pfqn_xzabalow(L, N, Z)
12 % @param L Service demand vector.
13 % @param N Population.
14 % @param Z Think time.
15 % @return XN Lower bound on throughput.
16%}
17%}
18function [XN]=pfqn_xzabalow(L,N,Z)
19 Ltot=sum(L);
20 XN=N/(Z+Ltot*N);
21end
Definition Station.m:245