LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
map_scv.m
1function SCV=map_scv(MAP)
2% SCV=map_scv(MAP) - Compute squared coefficient of variation of
3% inter-arrival times
4%
5% Input:
6% MAP: a MAP in the form of {D0,D1}
7%
8% Output:
9% SCV: squared coefficient of variation of inter-arrival times
10%
11
12SCV=map_var(MAP)/map_mean(MAP)^2;
13end