Mercurial > hg > mauch-mirex-2010
annotate _misc/featureextraction/.svn/text-base/basschroma13.m.svn-base @ 9:4ea6619cb3f5 tip
removed log files
author | matthiasm |
---|---|
date | Fri, 11 Apr 2014 15:55:11 +0100 |
parents | b5b38998ef3b |
children |
rev | line source |
---|---|
matthiasm@8 | 1 function bc13 = basschroma13(bc) |
matthiasm@8 | 2 bc(isnan(sum(bc,2)),:) = 1; |
matthiasm@8 | 3 bc = qnormalise(bc,1,2); |
matthiasm@8 | 4 bc13 = [bc,(1./12./max(bc,[],2)).^2]; |
matthiasm@8 | 5 bc13 = qnormalise(bc13, inf, 2); |