<div dir="ltr"><div dir="ltr"><div dir="ltr">Dear Mohith,<div><br></div><div><div style="font-family:"times new roman",serif">> My datasets are named as 304_sleep data.edf; 305_sleep data.edf...</div><br class="gmail-m_-2868194394719596807gmail-Apple-interchange-newline"></div><div>But in your code, you are generating 'subj1.edf' 'subj2.edf'...</div><div><br></div><div>See this Wiki page, particularly this part:</div><div><br></div><div><pre style="font-family:monospace,Courier;padding:1em;border:1px dashed rgb(47,111,171);color:rgb(0,0,0);background-color:rgb(249,249,249);line-height:1.3em;font-size:12.8px">cd('/data/project/example')
rawDataFiles = dir('*.bdf');
for subjID = 1:length(rawData) 
    loadName = rawDataFiles(subjID).name;
    dataName = loadName(1:end-4);
    
    % Step2: Import data.
    EEG = pop_biosig(loadName);
    EEG.setname = dataName;</pre></div><div><a href="https://sccn.ucsd.edu/wiki/Makoto's_useful_EEGLAB_code#Example_of_batch_code_to_preprocess_multiple_subjects_.2806.2F27.2F2017_updated.29">https://sccn.ucsd.edu/wiki/Makoto's_useful_EEGLAB_code#Example_of_batch_code_to_preprocess_multiple_subjects_.2806.2F27.2F2017_updated.29</a><br></div><div><br></div><div>Makoto</div></div><br><div class="gmail_quote"><div dir="ltr">On Mon, Jan 14, 2019 at 5:39 PM VARMA, MOHITH MUKUND <<a href="mailto:mohith96@connect.hku.hk" target="_blank">mohith96@connect.hku.hk</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="ltr"><div dir="ltr"><div dir="ltr"><div style="font-family:"times new roman",serif">Dear all,</div><div style="font-family:"times new roman",serif"><br></div><div style="font-family:"times new roman",serif">I am trying to process multiple datasets of .EDF format on EEGLAB and I was wondering could someone help me correcting the script I have compiled so far using the tips provided here <a href="https://sccn.ucsd.edu/wiki/Chapter_02:_Writing_EEGLAB_Scripts" target="_blank">https://sccn.ucsd.edu/wiki/Chapter_02:_Writing_EEGLAB_Scripts</a>. The current error that I get is: </div><div style="font-family:"times new roman",serif">Error using edfread (line 125)</div><div style="font-family:"times new roman",serif">No such file or directory</div><div style="font-family:"times new roman",serif">Error in StepOne (line 9)</div><div style="font-family:"times new roman",serif"><span style="white-space:pre-wrap">            </span>EEG = edfread(setname,'/Users/mohithverma/Desktop/PSG_Data'); %</div><div style="font-family:"times new roman",serif">                Load the dataset</div><div style="font-family:"times new roman",serif">My datasets are named as 304_sleep data.edf; 305_sleep data.edf...</div><div style="font-family:"times new roman",serif">Your help is much appreciated! Here's the code that I have come up with so far:</div><div style="font-family:"times new roman",serif">





<p class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:10px;line-height:normal;font-family:Courier">eeglab</p>
<p class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:10px;line-height:normal;font-family:Courier">clear;</p>
<p class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:10px;line-height:normal;font-family:Courier">Ns = 4;</p>
<p class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-p2" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:10px;line-height:normal;font-family:Courier;color:rgb(37,153,45)"><span class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-s1" style="color:rgb(4,51,255)">for</span><span class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-s2" style="color:rgb(0,0,0)"> S = 1:Ns<span class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-Apple-converted-space">  </span></span>% For each of the subjects</p>
<p class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-p2" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:10px;line-height:normal;font-family:Courier;color:rgb(37,153,45)"><span class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-s2" style="color:rgb(0,0,0)"><span class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-Apple-converted-space">    </span>mean_powbase = []; </span>% Initialize the baseline spectra average over all conditions for each subject</p>
<p class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:10px;line-height:normal;font-family:Courier"><span class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-Apple-converted-space">    </span>setname = [<span class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-s3" style="color:rgb(178,69,243)">'subj'</span> int2str(S) <span class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-s3" style="color:rgb(178,69,243)">'.edf'</span>];<span class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-Apple-converted-space">  </span><span class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-s4" style="color:rgb(37,153,45)">% Build dataset name</span></p>
<p class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-p3" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:10px;line-height:normal;font-family:Courier;color:rgb(178,69,243)"><span class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-s2" style="color:rgb(0,0,0)"><span class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-Apple-converted-space">        </span>EEG = edfread(setname,</span>'/Users/mohithverma/Desktop/PSG_Data'<span class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-s2" style="color:rgb(0,0,0)">); </span><span class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-s4" style="color:rgb(37,153,45)">% Load the dataset</span></p>
<p class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:10px;line-height:normal;font-family:Courier"><span class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-Apple-converted-space">        </span>[ALLEEG EEG] = eeg_store(ALLEEG, EEG);<span class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-Apple-converted-space">  </span><span class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-s4" style="color:rgb(37,153,45)">% Store the dataset in ALLEEG</span></p>
<p class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:10px;line-height:normal;font-family:Courier"><span class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-Apple-converted-space">        </span>[ersp,itc,powbase{s}] =pop_timef( ALLEEG(s),0, 1, [-100 600], 0, <span class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-s3" style="color:rgb(178,69,243)">'plotitc'</span>, <span class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-s3" style="color:rgb(178,69,243)">'off'</span>, <span class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-s3" style="color:rgb(178,69,243)">'plotersp'</span>, <span class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-s3" style="color:rgb(178,69,243)">'off'</span> );</p>
<p class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-p4" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:10px;line-height:normal;font-family:Courier;min-height:12px"><span class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail-Apple-converted-space">        </span></p></div><div><br></div><div dir="ltr"><div style="font-family:"times new roman",serif">Regards,</div><br></div>-- <br><div dir="ltr" class="gmail-m_-2868194394719596807gmail-m_6537270009955350528gmail_signature"><div dir="ltr"><div><div dir="ltr"><div dir="ltr"><div dir="ltr"><div><font size="2" face="times new roman, serif">Mohith M. Varma (Mo)</font></div><div><span style="font-family:"times new roman",serif;font-size:small">Graduate Research Assistant</span><br></div><div><font size="2" face="times new roman, serif"><br></font></div><div><font size="2" face="times new roman, serif">Social & Cognitive Neuroscience Laboratory</font></div><div><span style="font-family:"times new roman",serif;font-size:small">Department of Psychology</span></div><div><font size="2" face="times new roman, serif">Faculty of Social Sciences</font></div><div><font size="2" face="times new roman, serif">The University of Hong Kong</font></div><div><font size="2" face="times new roman, serif">Tel: (+852) 52622875</font></div><div><font size="2" face="times new roman, serif">Email: <a href="mailto:mohith96@connect.hku.hk" target="_blank">mohith96@connect.hku.hk<br></a></font></div><div style="font-size:small"></div></div></div></div></div></div></div></div></div></div>
_______________________________________________<br>
Eeglablist page: <a href="http://sccn.ucsd.edu/eeglab/eeglabmail.html" rel="noreferrer" target="_blank">http://sccn.ucsd.edu/eeglab/eeglabmail.html</a><br>
To unsubscribe, send an empty email to <a href="mailto:eeglablist-unsubscribe@sccn.ucsd.edu" target="_blank">eeglablist-unsubscribe@sccn.ucsd.edu</a><br>
For digest mode, send an email with the subject "set digest mime" to <a href="mailto:eeglablist-request@sccn.ucsd.edu" target="_blank">eeglablist-request@sccn.ucsd.edu</a></blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="gmail-m_-2868194394719596807gmail_signature"><div dir="ltr">Makoto Miyakoshi<br>Swartz Center for Computational Neuroscience<br>Institute for Neural Computation, University of California San Diego<br></div></div></div></div>