LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
matlab
lib
kpctoolbox
map
map_scv.m
1
function 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
12
SCV=map_var(MAP)/map_mean(MAP)^2;
13
end
Generated by
1.9.8