<div dir="ltr"><br><div class="gmail_quote"><div dir="ltr"><div>Good Evening,<br><br>I'm working on a MatLab script to combine several set files for one subject into a new set file for further analysis. <br></div><div>The original set files have already been filtering, corrected, and epoched. The only major difference between them is the number of epochs since some were rejected due to things like the subjected blinking. <br></div><div><br>When I tried plotting the new data set I noticed that the new data wasn't displayed the same as the old data. <br>Specifically the epoch data for the original set had markers at each event but the new data I added on didn't.<br><br></div>Also the data with markers that's displayed doesn't line up doesn't seem to be for the correct set.<br><div><br>The screenshots can be found at <a href="https://www.dropbox.com/s/4cqub9pl2k78cuh/combiningseveralsetfiles.zip?dl=0">https://www.dropbox.com/s/4cqub9pl2k78cuh/combiningseveralsetfiles.zip?dl=0</a> and below is the the MatLab code I tried<br><br><br>clear;<br>[ALLEEG, EEG, CURRENTSET, ALLCOM] = eeglab;%EEGALB 14.0.0b<br>ALLEEG = pop_loadset('filename',{'<wbr>411RCC.set','424RCC.set','<wbr>425RCC.set'},'filepath','C:\\<wbr>Users\\hodg4890\\data\\4\\');<br><br>new_set = ALLEEG(1);<br><br>new_set.datfile = 'newRCC.fdt';<br>new_set.saved = 'no';<br>new_set.setname = 'newRCC.set';<br>new_set.filename = 'newRCC.set';<br>new_set.data = cat(3,ALLEEG.data);<br>new_set.trials = size(new_set.data,3);<br>new_set.event = cat(2,ALLEEG.event);<br>new_set.epoch = cat(2,ALLEEG.epoch);<br><br>for i=1:new_set.trials<br>new_set.epoch(i).event = i;<br>new_set.event(i).epoch = i;<br>end<br><br>pop_eegplot(new_set);<br>pop_eegplot( ALLEEG(1) );<br><br><br></div><div>Sincerely,<br></div><div>Harold Hodgins<br></div><div><br></div></div>
</div><br></div>