view general/cellutils/@cell/gather.m @ 9:45aaf9b2d7b0

Moved high-order sequence/list functions to @cell class.
author samer
date Mon, 14 Jan 2013 15:49:04 +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