Mercurial > hg > ishara
view general/numerical/unitmax.m @ 29:61921dceded1
More documentation on type system.
author | samer |
---|---|
date | Sat, 19 Jan 2013 17:56:21 +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