LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
mmap_count_idc.m
1function idc = mmap_count_idc(mmap, t)
2% Computes the per-class Index of Dispersion of Counts for the given MMAP
3% at resolution t.
4
5m = mmap_count_mean(mmap,t);
6v = mmap_count_var(mmap,t);
7idc = v ./ m;
8
9end