LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
map_skew.m
1function SKEWNESS=map_skew(MAP)
2% SKEWNESS=map_skew(MAP) - Compute skewness of inter-arrival times
3%
4% Input:
5% MAP: a MAP in the form of {D0,D1}
6%
7% Output:
8% SKEWNESS: skewness of inter-arrival times
9%
10
11for i=1:3
12 m(i)=map_moment(MAP,i);
13end
14M3=m(3)-3*m(2)*m(1)+2*m(1)^3;
15SKEWNESS=M3/(sqrt(map_scv(MAP))*m(1))^3;
16end