samer@16: % pair - Make 2-element cell array samer@16: % samer@16: % pair :: A,B -> cell {A,B}. samer@16: % samer@16: % The type pair(A,B) can be used as a synonym for cell {A,B} when convenient. samer@10: function p=pair(a,b), p={a,b};