annotate general/pair.m @ 44:3cedfd4549ef

Code added since initial check in.
author samer
date Tue, 13 Jan 2015 14:03:17 +0000
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};