LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
map_prob.m
1function PIQ=map_prob(MAP)
2% PIQ=map_prob(MAP) - Equilibrium distribution of the underlying
3% continuous-time process
4%
5% Input:
6% MAP: a MAP in the form of {D0,D1}
7%
8% Output:
9% PIQ: equilibrium distribution of the continuous-time Markov chain
10% Q=D0+D1
11%
12
13PIQ=ctmc_solve(map_infgen(MAP));
14end