annotate general/pair.m @ 61:eff6bddf82e3 tip

Finally implemented perceptual brightness thing.
author samer
date Sun, 11 Oct 2015 10:20:42 +0100
parents db7f4afd27c5
children
rev   line source
samer@16 1 % pair - Make 2-element cell array
samer@16 2 %
samer@16 3 % pair :: A,B -> cell {A,B}.
samer@16 4 %
samer@16 5 % The type pair(A,B) can be used as a synonym for cell {A,B} when convenient.
samer@10 6 function p=pair(a,b), p={a,b};