LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
mmap_hide.m
1function MMAP = mmap_hide(MMAP, types)
2% MMAP_HIDE. Makes a subset of the MMAP type hidden.
3% MMAP = MMAP_HIDE(MMAP, TYPES) takes a MMAP with K arrival types and
4% returns a new MMAP for the same stochastic process with those arrivals
5% hidden from observation.
6
7for k=types(:)'
8 MMAP{2+k} = 0 * MMAP{2+k};
9end
10MMAP = mmap_normalize(MMAP);
11end