Mercurial > hg > ishara
view general/numerical/maxnormalise.m @ 16:db7f4afd27c5
Rearranging numerical toolbox.
author | samer |
---|---|
date | Thu, 17 Jan 2013 13:20:44 +0000 |
parents | e44f49929e56 |
children | 8476b3d9d295 |
line wrap: on
line source
function B=maxnormalise(A) % maxnormalise - columnwise multiplicative normalisation maximum value % % maxnormalise :: [[N,M]] -> [[N,M]]. B=A./repmat(max(A,[],1),size(A,1),1);