4 % @brief Upper asymptotic bound on throughput (Zahorjan-Balanced).
10 % @brief Upper asymptotic bound on throughput (Zahorjan-Balanced).
11 % @fn pfqn_xzabaup(L, N, Z)
12 % @param L Service demand vector.
13 % @param N Population.
14 % @param Z Think time.
15 % @
return XN Upper bound on throughput.
18function [XN]=pfqn_xzabaup(L,N,Z)
19 XN=min([1/max(L) N/(sum(L)+Z)]);