Dear HanGue,<div><br></div><div>Currently no. You should perform it for each subject.</div><div><br></div><div>Actually that was the motive for me to start writing a code in Matlab: automatize the boring and time-consuming preprocess steps (and it eliminates human error too). For that you need two simple techniques.</div>

<div>1. use 'eegh' to obtain the code you ran from GUI</div><div>2. use 'for...end' loop. I give you an example below. Also 'help' literally helps.</div><div><br></div><div>cd('yourDataFolder')</div>

<div>allSetFiles = dir('*.set');</div><div>for n = 1:length(allSetFiles)</div><div>      loadFileName = allSetFiles(n).name;</div><div>      dataName = loadFileName(1:end-4);</div><div>      EEG = pop_loadset('filename', loadFileName, 'filepath', pwd);</div>

<div><br></div><div>      ..... (do your processes here)</div><div><br></div><div>      pop_saveset(EEG, 'filename', loadFileName, 'filepath', pwd)</div><div>end<br><br>Good luck.<br><br>Makoto</div><div>
<br>
</div><div><div class="gmail_quote">2013/3/17 HanGue Jo <span dir="ltr"><<a href="mailto:johangue@gmail.com" target="_blank">johangue@gmail.com</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

Hi all,<div><br></div><div>Is there any method to use "Tools -> Reject data epochs" on multiple datasets or a study, in one step on multiple datasets ?</div><div><br></div><div>Best,</div><div>HanGue.</div>
<br>_______________________________________________<br>
Eeglablist page: <a href="http://sccn.ucsd.edu/eeglab/eeglabmail.html" 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">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">eeglablist-request@sccn.ucsd.edu</a><br></blockquote></div><br><br clear="all"><div><br></div>

-- <br>Makoto Miyakoshi<br>JSPS Postdoctral Fellow for Research Abroad<br>Swartz Center for Computational Neuroscience<br>Institute for Neural Computation, University of California San Diego<br>
</div>