2 % @brief Stationary mean fluid level of a level-dependent fluid queue
4 % @author LINE Development Team
8 % @brief Stationary mean fluid level from mfq_ld_solve output.
11 % Thin LINE wrapper around LevelDependentFluidStationaryMean. Returns
the
12 % scalar mean fluid level E[X] of a first/second-order level-dependent fluid
13 % queue in closed form,
using the matrix-exponential building blocks returned
18 % res = mfq_ld_mean(masses,iniF,KF,cloF,iniB,KB,cloB,T)
23 % <tr><th>Name<th>Description
24 % <tr><td>masses,iniF..cloB<td>Building blocks returned by mfq_ld_solve
25 % <tr><td>T<td>Vector of regime thresholds (length K)
29 % res: scalar mean fluid level E[X].
31function res = mfq_ld_mean(masses,iniF,KF,cloF,iniB,KB,cloB,T)
32res = LevelDependentFluidStationaryMean(masses,iniF,KF,cloF,iniB,KB,cloB,T);