LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
getSjrnT.m
1function RD = getSjrnT(self, R)
2% RD = GETSJRNT(R)
3% Alias for getCdfRespT. Returns cumulative distribution functions of sojourn times.
4
5if nargin < 2
6 RD = self.getCdfRespT;
7else
8 RD = self.getCdfRespT(R);
9end
10end