LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
pfqn_xzabaup.m
1%{
2%{
3 % @file pfqn_xzabaup.m
4 % @brief Upper asymptotic bound on throughput (Zahorjan-Balanced).
5%}
6%}
7
8%{
9%{
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.
16%}
17%}
18function [XN]=pfqn_xzabaup(L,N,Z)
19 XN=min([1/max(L) N/(sum(L)+Z)]);
20end