Mercurial > hg > ishara
view general/numerical/maxnormalise.m @ 21:8476b3d9d295
Cleaning up and renaming things.
author | samer |
---|---|
date | Thu, 17 Jan 2013 14:21:24 +0000 |
parents | e44f49929e56 |
children |
line wrap: on
line source
% maxnormalise - columnwise multiplicative normalisation maximum value % % maxnormalise :: [[N,M]] -> [[N,M]]. function B=maxnormalise(A), B=divnorm(@(x)max(x,[],1),A); end