LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
mfq_ld_distr.m
1%{ @file mfq_ld_distr.m
2 % @brief Stationary distribution of a level-dependent fluid queue
3 %
4 % @author LINE Development Team
5%}
6
7%{
8 % @brief Stationary fluid-level distribution from mfq_ld_solve output.
9 %
10 % @details
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.
15 %
16 % @par Syntax:
17 % @code
18 % res = mfq_ld_distr(masses,iniF,KF,cloF,iniB,KB,cloB,T,what,points)
19 % @endcode
20 %
21 % @par Parameters:
22 % <table>
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
28 % </table>
29 %
30 % @par Returns:
31 % res: (numel(points), N) matrix with the per-state values at each point.
32%}
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);
35end
Definition Station.m:245