<html><body><div style="color:#000; background-color:#fff; font-family:tahoma, new york, times, serif;font-size:10pt"><div style="font-family: tahoma, 'new york', times, serif; font-size: 10pt; "><br></div><div style="font-family: tahoma, 'new york', times, serif; "><div style="font-family: 'times new roman', 'new york', times, serif; "><font size="3">   1. Re: Nicolet evoked potential data (conny kranczioch)</font><br><div id="yiv2002833020" style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; "><div><div style="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); font-family: tahoma, 'new york', times, serif; font-size: 10pt; "><div><br></div><div><span style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; ">Hello,</span><br></div></div></div></div><div style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; "
 class="yui_3_7_2_17_1360139554480_62"><br></div><div style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; " class="yui_3_7_2_17_1360139554480_62">I did get a couple of emails pointing me at the following script. Thanks for that but I tried it before and it did not work.</div><div style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; " class="yui_3_7_2_17_1360139554480_62"><br></div><div style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; " class="yui_3_7_2_17_1360139554480_62"><a href="http://sccn.ucsd.edu/pipermail/eeglablist/2004/000565.html" target="_blank" style="color: rgb(40, 98, 197); outline: 0px; font-family: Helvetica, Arial, sans-serif; font-size: 12px; ">http://sccn.ucsd.edu/pipermail/eeglablist/2004/000565.html</a><br></div><div style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; "
 class="yui_3_7_2_17_1360139554480_62"><br></div><div style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; " class="yui_3_7_2_17_1360139554480_62">However, by accident I found a software that gives a free 30-day trial that reads in EP Nicolet data and allows to save them as text file. So problem solved.</div><div style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; " class="yui_3_7_2_17_1360139554480_62">For anyone interested here's where I found the software called <span style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; line-height: 18px; ">emgepview32</span></div><div style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; " class="yui_3_7_2_17_1360139554480_62"><br></div><div class="yui_3_7_2_17_1360139554480_62">http://www.broutian.dol.ru/emgep/downloads.htm<br></div><div class="yui_3_7_2_17_1360139554480_62"><br></div><div
 class="yui_3_7_2_17_1360139554480_62">Conny</div><div style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; " class="yui_3_7_2_17_1360139554480_62"><br></div><div style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; " class="yui_3_7_2_17_1360139554480_62"><br></div><div style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; " class="yui_3_7_2_17_1360139554480_62"> </div><div style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; " class="yui_3_7_2_17_1360139554480_62"><br></div><div style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; " class="yui_3_7_2_17_1360139554480_62">2. Re: epochs of resting conditions (Makoto Miyakoshi)<br><div id="yiv2002833020"><div class="yui_3_7_2_17_1360139554480_68" style="font-size: 10pt; "></div></div></div><div style="font-family: 'times new roman', 'new york', times, serif;
 font-size: 12pt; " class="yui_3_7_2_17_1360139554480_62"><br></div><font size="3">Dear Francesca,</font></div><div class="yui_3_7_2_17_1360139554480_62"><br></div><div class="yui_3_7_2_17_1360139554480_62">We use the following code in our group to create "dummy epochs". I'm not sure who started writing it but the last one who worked on it was Filipa Campos Viola.</div><div class="yui_3_7_2_17_1360139554480_62"><br></div><div class="yui_3_7_2_17_1360139554480_62">







<div class="p1"><span class="s1"> </span>% create dummy events</div>
<div class="p2">    duration = 2; <span class="s2">% seconds</span></div>
<div class="p2">    num = floor(EEG.xmax/duration)-1;</div>
<div class="p2">    pnts = 1;</div>
<div class="p2">    eeg_eventtypes(EEG)</div>
<div class="p2">    <span class="s3">for</span> n = length(EEG.event)+1:length(EEG.event)+num</div>
<div class="p2">        EEG.event(n).type = <span class="s4">'999'</span>;</div>
<div class="p2">        EEG.event(n).latency = pnts;</div>
<div class="p2">        EEG.event(n).urevent = n;</div>
<div class="p2">        pnts = pnts+(EEG.srate*duration);</div>
<div class="p2">    <span class="s3">end</span></div>
<div class="p1"><span class="s1"> </span></div><div class="p1" style="color: rgb(0, 0, 0); font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal; ">% epoch to dummy events</div>
<div class="p2">    EEG = pop_epoch( EEG, {999}, [0 duration], <span class="s4">'newname'</span>, <span class="s3">...</span></div>
<div class="p2">        SUBJ{s}, <span class="s4">'epochinfo'</span>, <span class="s4">'yes'</span>);</div>
<div class="p3">    </div>
<div class="p1">% saving epoched dataset</div>
<div class="p2">    EEG = pop_saveset(EEG, [SUBJ{s},<span class="s4">'_dummy_ep.set'</span>], PATHOUT);  </div><div class="p2" style="color: rgb(0, 0, 0); font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal; "><br></div><div class="p2" style="color: rgb(0, 0, 0); font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal; ">Best, Conny</div><div class="p2" style="color: rgb(0, 0, 0); font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal; "><br></div><br><br><br><br><font size="3">_______________________________________________</font><br><font size="3">eeglablist mailing list </font><a ymailto="mailto:eeglablist@sccn.ucsd.edu" href="mailto:eeglablist@sccn.ucsd.edu" style="font-family: 'times new roman', 'new york', times, serif;
 font-size: 12pt; ">eeglablist@sccn.ucsd.edu</a><br><font size="3">Eeglablist page: </font><a href="http://www.sccn.ucsd.edu/eeglab/eeglabmail.html" target="_blank" style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; ">http://www.sccn.ucsd.edu/eeglab/eeglabmail.html</a><br><font size="3">To unsubscribe, send an empty email to </font><a ymailto="mailto:eeglablist-unsub@sccn.ucsd.edu" href="mailto:eeglablist-unsub@sccn.ucsd.edu" style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; ">eeglablist-unsub@sccn.ucsd.edu</a><br><font size="3">To switch to non-digest mode, send an empty email to </font><a ymailto="mailto:eeglablist-nodigest@sccn.ucsd.edu" href="mailto:eeglablist-nodigest@sccn.ucsd.edu" style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; ">eeglablist-nodigest@sccn.ucsd.edu</a><br><br> </div> </div>  </div></body></html>