2 % @brief Stationary distribution of a level-dependent fluid queue
4 % @author LINE Development Team
8 % @brief Stationary fluid-level distribution from mfq_ld_solve output.
11 % Thin LINE wrapper around LevelDependentFluidStationaryDistr. Evaluates
the
12 % stationary density or distribution of a first/second-order level-dependent
13 % fluid queue at
the requested points,
using the matrix-exponential building
14 % blocks returned by mfq_ld_solve.
18 % res = mfq_ld_distr(masses,iniF,KF,cloF,iniB,KB,cloB,T,what,points)
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)
26 % <tr><td>what<td>
'pdf',
'pdfd' (density derivative),
'cdf' P(X<p), or
'cdfm' P(X<=p)
27 % <tr><td>points<td>Fluid levels at which to evaluate
31 % res: (numel(points), N) matrix with
the per-state values at each point.
33function res = mfq_ld_distr(masses,iniF,KF,cloF,iniB,KB,cloB,T,what,points)
34res = LevelDependentFluidStationaryDistr(masses,iniF,KF,cloF,iniB,KB,cloB,T,what,points);