Mercurial > hg > ishara
view general/numerical/unitmax.m @ 35:f1ce7876346a
Updated docs.
author | samer |
---|---|
date | Mon, 21 Jan 2013 11:01:45 +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