annotate graphics/imagexy.m @ 61:eff6bddf82e3 tip

Finally implemented perceptual brightness thing.
author samer
date Sun, 11 Oct 2015 10:20:42 +0100
parents 82075c94eed1
children
rev   line source
samer@47 1 function H=imagexy(varargin)
samer@47 2 % IMAGEXY - Just like imagesc but with axis xy
samer@47 3
samer@47 4 h=imagesc(varargin{:});
samer@47 5 if nargout>0, H=h; end
samer@47 6 axis xy;