LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
map_kurt.m
1function KURT=map_kurt(MAP)
2% KURT=map_kurt(MAP) - Compute kurtosis
3%
4% Input:
5% MAP: a MAP in the form of {D0,D1}
6%
7% Output:
8% KURT: kurtosis of the interarrrival times
9%
10%
11m=zeros(1,4);
12for i=1:4
13 m(i)=map_moment(MAP,i);
14end
15KURT=(m(4)-4*m(3)*m(1)+6*m(2)*m(1)^2-3*m(1)^4)/map_var(MAP)^2;