annotate general/cellutils/cellget.m @ 61:eff6bddf82e3 tip

Finally implemented perceptual brightness thing.
author samer
date Sun, 11 Oct 2015 10:20:42 +0100
parents e44f49929e56
children
rev   line source
samer@4 1 function B=cellget(A,varargin)
samer@4 2 % cellget - Cell array reference as ordinary function
samer@4 3 %
samer@4 4 % cellget :: {[N]->A}, 1..N -> A.
samer@4 5 % cellget :: {[N,M]->A}, 1..N, 1..M -> A.
samer@4 6 %
samer@4 7 % etc.
samer@4 8
samer@4 9 B=A{varargin{:}};
samer@4 10