Dear Makoto, Matthew and James,<br><br>thank you very much for a very prompt response. All of your solutions work for me. It was of a great help.<br><br>All the best,<br><br>Ida<br><br><div class="gmail_quote">On Thu, May 31, 2012 at 10:55 PM, James Desjardins <span dir="ltr"><<a href="mailto:jdesjardins@brocku.ca" target="_blank">jdesjardins@brocku.ca</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Ida,<br>
<br>
If you load two data set files into EEGLab copying the following to<br>
the command line should give you what you are looking for (two arrays,<br>
one that is channel 10 of the first dataset [d1ch10], and the second<br>
that is channel 100 from dataset number 2 [d2ch100].<br>
<br>
<br>
%create d1ch10 array...<br>
d1ch10=ALLEEG(1).data(10,:,:);<br>
%save d1ch10 to file "d1ch10.mat"...<br>
save('d1ch10.mat','d1ch10');<br>
<br>
%create d2ch100 array...<br>
d2ch100=ALLEEG(2).data(100,:,:);<br>
%save d2ch100 to file "d2ch100.mat"...<br>
save('d2ch100.mat','d2ch100');<br>
<br>
%clear the workspace then load saved arrays...<br>
clear all<br>
load('d1ch10.mat');<br>
load('d2ch100.mat');<br>
<br>
<br>
<br>
<br>
<br>
<br>
I hope this is helpful.<br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
James Desjardins, MA<br>
Technician, Cognitive and Affective Neuroscience Lab<br>
Department of Psychology, Behavioural Neuroscience<br>
Brock University<br>
500 Glenridge Ave.<br>
St. Catharines, ON, Canada<br>
L2S 3A1<br>
<a href="tel:905-688-5550%20x4676" value="+19056885550">905-688-5550 x4676</a><br>
</font></span><div class="HOEnZb"><div class="h5"><br>
<br>
Quoting ida miokovic <<a href="mailto:ida.miokovic@gmail.com">ida.miokovic@gmail.com</a>>:<br>
<br>
> Hello everyone,<br>
><br>
> I am working with datasets of 120 EEG channels in EEGLAB. After some<br>
> preprocessing I wanted to export some channels (one by one) to MATLAB<br>
> workspace in way to be able to import it (one channel) as an input it to<br>
> Neural Network.<br>
><br>
> For example - I would like to obtain channel number 10 from Dataset1 in<br>
> EEGLAB and channel number 100 from other Dataset2. I do not need all of the<br>
> channels, so option File-->Export is more complicated in a way I would have<br>
> to export that first and then go through that .txt file to find a channel<br>
> of my interest. If there is straightforward way for that, please let me<br>
> know...<br>
><br>
> Thanks a lot<br>
><br>
> Ida<br>
><br>
<br>
<br>
<br>
<br>
</div></div><div class="HOEnZb"><div class="h5">_______________________________________________<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>
</div></div></blockquote></div><br>