<div dir="ltr"><div>Hi 
Ighoyota ben,</div><div><br></div><div>You will have to create your own trial definition (trl). In (very) short:<br></div><div><br></div><div>1) read your text file in matlab, using whatever MATLAB functions are easiest (e.g. dlmread) <br></div><div>2) create a variable called <b>trl </b>that contains N rows for N trials, with 3 columns: start, end, and offset in <b>samples, </b>with sample numbers starting from the beginning of you file. <br></div><div>The offset determines t=0, e.g. when you want to read data before the trigger. E.g., if sampled at 1000Hz, and want trials from -1.0 to 2.0 around your triggers (i.e. 3000 samples), you would have something like (taking random sample values for where your trials occur): <br></div><div><br></div><div>trl = <br></div><div>[12300, 15300, -1000;</div><div>18000, 21000, -1000;<br></div><div>
25050, 28050, -1000]</div><div><br></div><div>
3) enter that in <b>cfg.trl</b>, together with your file name in <b>cfg.dataset</b>, and run data = ft_preprocessing(cfg). E.g.:</div><div></div><div><br></div><div>cfg = [];</div><div>cfg.dataset = 'myfile.edf';</div><div>cfg.trl = trl;</div><div>data = ft_preprocessing(cfg)<br></div><div></div><div><br></div><div>I hope this explains the general idea. It will be good to follow a tutorial, to get the whole run-through. and take extra care to look at the trial definition part (take e.g. a peak at the cfg.trl)<br></div><div><br></div><div>HTH,</div><div>Stephen<br></div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, 23 Jan 2019 at 01:12, Ben Ighoyota Ajenaghughrure <<a href="mailto:ighoyota@tlu.ee">ighoyota@tlu.ee</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="auto">Hello All,<div dir="auto"><br></div><div dir="auto">I need help creating trial definitions for my continous eeg data using events time locked in a seperate text file.</div><div dir="auto"><br></div><div dir="auto">I have my continous eeg data recorded during game interaction without any event information.</div><div dir="auto">The Game events are stored in a text file in miliseconds precission.</div><div dir="auto"><br></div><div dir="auto">Both game and eeg recorder runs on the same PC. To take care time synchronisation issues.</div><div dir="auto"><br></div><div dir="auto">My problem is how to define trails for eeg data using theĀ  event file stored seperately , because currently my eeg data does not have any event information.</div><div dir="auto"><br></div><div dir="auto">I am new to fieldtrip but have done this task in eeglab and would love to move on to using fieldtrip toolbox.</div><div dir="auto"><br></div><div dir="auto">Looking forward to your support.</div><div dir="auto"><br></div><div dir="auto">Best Regards</div><div dir="auto"><br></div><div dir="auto">Ighoyota ben.</div></div>
_______________________________________________<br>
fieldtrip mailing list<br>
<a href="https://mailman.science.ru.nl/mailman/listinfo/fieldtrip" rel="noreferrer" target="_blank">https://mailman.science.ru.nl/mailman/listinfo/fieldtrip</a><br>
<a href="https://doi.org/10.1371/journal.pcbi.1002202" rel="noreferrer" target="_blank">https://doi.org/10.1371/journal.pcbi.1002202</a><br>
</blockquote></div>