LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
matlab
lib
kpctoolbox
map
map_var.m
1
function VAR=map_var(MAP)
2
% VAR=map_var(MAP) - Compute variance of interarrival times
3
%
4
% Input:
5
% MAP: a MAP in the form of {D0,D1}
6
%
7
% Output:
8
% VAR: variance of inter-arrival times
9
%
10
11
VAR=map_moment(MAP,2)-map_mean(MAP)^2;
12
end
Generated by
1.9.8