


Vertical concatenation of file_array objects. _______________________________________________________________________ Copyright (C) 2005 Wellcome Department of Imaging Neuroscience



0001 function o = vertcat(varargin) 0002 % Vertical concatenation of file_array objects. 0003 % _______________________________________________________________________ 0004 % Copyright (C) 2005 Wellcome Department of Imaging Neuroscience 0005 0006 % 0007 % $Id: vertcat.m 253 2005-10-13 15:31:34Z guillaume $ 0008 0009 0010 o = cat(1,varargin{:}); 0011 return;