LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
getProbAggr.m
1function ProbAggr = getProbAggr(self, node, state)
2% PROBAGGR = GETPROBAGGR(NODE, STATE)
3% Aggregated state probability at a node. For LDES the sample paths are already
4% per-class, so this equals getProb(). Fully JSON-mediated. Mirrors the
5% Python-native getProbAggr().
6if nargin < 3
7 state = [];
8end
9ProbAggr = self.getProb(node, state);
10end
Definition Station.m:245