LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
qsys_mapd1.m
1function result = qsys_mapd1(D0, D1, s, varargin)
2% QSYS_MAPD1 Analyzes a MAP/D/1 queue using Q-MAM.
3%
4% RESULT = QSYS_MAPD1(D0, D1, S) analyzes a MAP/D/1 queue with:
5% D0 - MAP hidden transition matrix (n x n)
6% D1 - MAP arrival transition matrix (n x n)
7% S - Deterministic service time (positive scalar)
8%
9% RESULT = QSYS_MAPD1(..., 'maxNumComp', N) sets max queue length components (default 1000)
10% RESULT = QSYS_MAPD1(..., 'numSteps', K) sets waiting time distribution granularity (default 1)
11%
12% This is a convenience wrapper for qsys_mapdc with c=1.
13%
14% See also qsys_mapdc, Q_CT_MAP_D_C, qsys_mapm1
15
16% Copyright (c) 2012-2026, Imperial College London
17% All rights reserved.
18
19result = qsys_mapdc(D0, D1, s, 1, varargin{:});
20
21end