LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
map_count_mean.m
1function [m] = map_count_mean(map,t)
2% Computes the mean of the counting process, at resolution t, for the
3% given MAP.
4% Input:
5% - mmap: Markovian Arrival Process
6% - t: the period considered for each sample of the counting process
7% Output:
8% - m: mean arrivals in (0,t]
9
10% arrival rate
11l = map_lambda(map);
12
13% mean
14m = l * t(:);
15end