1function [Pi_t, SSnode_a] = getTranProbAggr(self, node)
2% [PI_T, SSNODE_A] = GETTRANPROBSTATEAGGR(NODE)
4options = self.getOptions;
5if isfield(options,
'timespan') && isfinite(options.timespan(2))
7 [t,pi_t,~,~,~,~,~,~,~,~,~,SSa] = solver_ctmc_transient_analyzer(sn, options);
9 SSnode_a = SSa(:,(jnd-1)*sn.nclasses+1:jnd*sn.nclasses);
12 line_error(mfilename,'getTranProbAggr in SolverCTMC requires to specify a finite timespan T, e.g., SolverCTMC(model,''timespan'',[0,T]).');