Download this file
1 2 3 4 5
function this = horzcat(varargin); this = varargin{1}; for index = 2:length(varargin) this.EEG(index) = varargin{index}.EEG; end