LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
matlab
lib
kpctoolbox
map
map_kurt.m
1
function 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
%
11
m=zeros(1,4);
12
for
i=1:4
13
m(i)=map_moment(MAP,i);
14
end
15
KURT=(m(4)-4*m(3)*m(1)+6*m(2)*m(1)^2-3*m(1)^4)/map_var(MAP)^2;
Generated by
1.9.8