Mercurial > hg > ishara
view general/numerical/unitmax.m @ 42:ae596261e75f
Various fixes and development to audio handling
author | samer |
---|---|
date | Tue, 02 Dec 2014 14:51:13 +0000 |
parents | 4f5015db91aa |
children |
line wrap: on
line source
% unitmax - columnwise multiplicative normalisation maximum value % % unitmax :: [[N,M]] -> [[N,M]]. function B=unitmax(A), B=divnorm(@(x)max(x,[],1),A); end