1function lst = aoi_lst_det(d)
2%AOI_LST_DET Laplace-Stieltjes transform
for deterministic (constant) distribution
6% Returns a function handle
for the LST of a deterministic distribution
7% with constant value d.
10% d (
double): Constant value (must be positive)
13% lst (function_handle): LST function @(s) exp(-s*d)
15% The LST of a deterministic random variable X = d
is: H*(s) = exp(-s*d)
17% See also: aoi_lst_exp, aoi_lst_erlang, aoi_lst_ph
19% Copyright (c) 2012-2026, Imperial College London
23 line_error(mfilename,
'Constant d must be positive');
26lst = @(s) exp(-s .* d);