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().
7if nargin < 2 || isempty(numEvents)
10tranSysState = self.sampleSys(numEvents);
11if ~isempty(tranSysState) && isstruct(tranSysState)
12 tranSysState.isaggregate = true;