LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
getCdfRespT.m
1function RD = getCdfRespT(self, R) %#ok<INUSD>
2% RD = GETCDFRESPT(R)
3%
4% Not available: SolverSSA does not record per-job response times.
5%
6% A simulator must report what it measured. The inherited NetworkSolver
7% implementation fabricates an exponential law with the right mean, which
8% carries no information about the tail and would be indistinguishable, to the
9% caller, from a measured distribution. SSA samples state trajectories, not
10% per-job sojourn times, so there is nothing to build an empirical CDF from.
11%
12% Use SolverJMT (whose getCdfRespT is the ecdf of the logged per-job response
13% times), or getPerctRespT(...,'forktail') for the analytical fork-join tail.
14%
15% Copyright (c) 2012-2026, Imperial College London
16% All rights reserved.
17
18line_error(mfilename, ['SolverSSA does not record per-job response times, so it cannot return an ' ...
19 'empirical response time CDF. Use SolverJMT for a measured CDF, or ' ...
20 'getPerctRespT(...,''forktail'') for the analytical fork-join tail.']);
21end