view general/numerical/unitmax.m @ 37:beb8a3f4a345

Renamed prefs to options throughout.
author samer
date Mon, 28 Jan 2013 10:52:11 +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