1function SKEWNESS=map_skew(MAP)
2% SKEWNESS=map_skew(MAP) - Compute skewness of inter-arrival times
5% MAP: a MAP in the form of {D0,D1}
8% SKEWNESS: skewness of inter-arrival times
12 m(i)=map_moment(MAP,i);
14M3=m(3)-3*m(2)*m(1)+2*m(1)^3;
15SKEWNESS=M3/(sqrt(map_scv(MAP))*m(1))^3;