LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
pfqn_xzabalow.m
1%{
2%{
3 % @file pfqn_xzabalow.m
4 % @brief Lower asymptotic bound on throughput (Zahorjan-Balanced).
5%}
6%}
7
8%{
9%{
10 % @brief Lower asymptotic bound on throughput (Zahorjan-Balanced).
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