


Merge a set of cell arrays into one long cell array
merged = cellMerge(varargin);
Purpose:
Merge a list of cell arrays into one long cell array.
Example:
a = {'a','b'}; b = {'c'}; cellMerge(a,b);
a = {'a','b'}; b = {'c'}; c = []; cellMerge(a,b,c)
Copyright ImagEval Consultants, LLC, 2003.