1function result = qsys_mapd1(D0, D1, s, varargin)
2% QSYS_MAPD1 Analyzes a MAP/D/1 queue
using Q-MAM.
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)
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)
12% This
is a convenience wrapper
for qsys_mapdc with c=1.
14% See also qsys_mapdc, Q_CT_MAP_D_C, qsys_mapm1
16% Copyright (c) 2012-2026, Imperial College London
19result = qsys_mapdc(D0, D1, s, 1, varargin{:});