LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
getProbNormConstAggr.m
1function [logNormConst] = getProbNormConstAggr(self)
2% [LOGNORMCONST] = GETPROBNORMCONST()
3
4if GlobalConstants.DummyMode
5 logNormConst = NaN;
6 return
7end
8
9runAnalyzer(self);
10logNormConst = self.result.Prob.logNormConstAggr;
11end