Mercurial > hg > ishara
view general/cellutils/@cell/gather.m @ 53:3ba80c9914ff
Minor doc fix, added .class to .hgignore
author | samer |
---|---|
date | Mon, 02 Feb 2015 10:47:55 +0000 |
parents | e44f49929e56 |
children |
line wrap: on
line source
function Y=gather(dim,X,varargin) % gather - Gather for cell arrays % % gather :: % D:natural ~'dimenion along which to gather', % cells(A) ~'1 D cell array of things' % -> [Size->A]. if isempty(X), Y=[]; else Y=cellcat(dim,X); end