https://github.com/OHBA-analysis/HMM-MAR
Raw File
Tip revision: df84f129c4d6a2f36757f137da28466b7ae5c3d5 authored by robecker on 05 December 2016, 18:12:29 UTC
Merge branch 'master' of https://github.com/OHBA-analysis/HMM-MAR into robert_stochastic
Tip revision: df84f12
getscore.m
function score = getscore(M)
% get the score from the (flipped) matrices of autocorrelation contained in M
sumM = abs(sum(M,4));
score = sum(sumM(:));
end
back to top