annotate 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
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