[422372]: / functions / @eegobj / horzcat2.m

Download this file

6 lines (5 with data), 149 Bytes

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