annotate general/numerical/unitmax.m @ 35:f1ce7876346a

Updated docs.
author samer
date Mon, 21 Jan 2013 11:01:45 +0000
parents 4f5015db91aa
children
rev   line source
samer@22 1 % unitmax - columnwise multiplicative normalisation maximum value
samer@4 2 %
samer@22 3 % unitmax :: [[N,M]] -> [[N,M]].
samer@22 4 function B=unitmax(A), B=divnorm(@(x)max(x,[],1),A); end
samer@4 5