LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
sampleSysAggr.m
1function tranSysState = sampleSysAggr(self, numEvents)
2% TRANSYSSTATE = SAMPLESYSAGGR(NUMEVENTS)
3% Aggregated system-wide sample path. For LDES the trajectories are already
4% per-class, so this equals sampleSys() marked aggregated. Fully JSON-mediated.
5% Mirrors the Python-native sampleSysAggr().
6
7if nargin < 2 || isempty(numEvents)
8 numEvents = 0;
9end
10tranSysState = self.sampleSys(numEvents);
11if ~isempty(tranSysState) && isstruct(tranSysState)
12 tranSysState.isaggregate = true;
13end
14end
Definition Station.m:245