<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div>Try this as a replacement for the <span class="Apple-style-span" style="font-family: Courier; font-size: 12px; ">read_sbin_data<span class="Apple-style-span" style="font-family: Helvetica; font-size: medium; ">.m file.  It fixes the problem (which, contrary to what I just said, is that the unsegmented data code someone added was assuming the files are always int16 whereas your data is single, so it wasn't skipping the correct number of bytes).  It's based on the fieldtrip-20100406 release rather than today's release but should be good enough until I can get the fix posted.  Let me know if there are any further problems.</span></span></div><div><br></div><div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; "><span style="color: #4e00ff">function</span> [trialData] = read_sbin_data(filename, hdr, begtrial, endtrial, chanindx)</div><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Courier; min-height: 14.0px"> <br class="webkit-block-placeholder"></p><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(0, 164, 23); ">% READ_SBIN_DATA reads the data from an EGI segmented simple binary format file</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(0, 164, 23); ">%</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(0, 164, 23); ">% Use as</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(0, 164, 23); ">%   [trialData] = read_sbin_data(filename, hdr, begtrial, endtrial, chanindx)</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(0, 164, 23); ">% with</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(0, 164, 23); ">%   filename       name of the input file</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(0, 164, 23); ">%   hdr            header structure, see READ_HEADER</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(0, 164, 23); ">%   begtrial       first trial to read, mutually exclusive with begsample+endsample</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(0, 164, 23); ">%   endtrial       last trial to read,  mutually exclusive with begsample+endsample</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(0, 164, 23); ">%   chanindx       list with channel indices to read</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(0, 164, 23); ">%</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(0, 164, 23); ">% This function returns a 3-D matrix of size Nchans*Nsamples*Ntrials.</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(0, 164, 23); ">%_______________________________________________________________________</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(0, 164, 23); ">%</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(0, 164, 23); ">%</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(0, 164, 23); ">% Modified from EGI's readEGLY.m with permission 2008-03-31 Joseph Dien</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(0, 164, 23); ">%</div><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Courier; color: #00a417; min-height: 14.0px"> <br class="webkit-block-placeholder"></p><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(0, 164, 23); ">% Subversion does not use the Log keyword, use 'svn log <filename>' or 'svn -v log | less' to get detailled information</div><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Courier; color: #00a417; min-height: 14.0px"> <br class="webkit-block-placeholder"></p><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">fh=fopen([filename],<span style="color: #ca00fa">'r'</span>);</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; "><span style="color: #4e00ff">if</span> fh==-1</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(202, 0, 250); "><span style="color: #000000">  error(</span>'wrong filename'<span style="color: #000000">)</span></div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(78, 0, 255); ">end</div><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Courier; color: #4e00ff; min-height: 14.0px"> <br class="webkit-block-placeholder"></p><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">version = fread(fh,1,<span style="color: #ca00fa">'int32'</span>);</div><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Courier; min-height: 14.0px"> <br class="webkit-block-placeholder"></p><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(0, 164, 23); ">%check byteorder</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">[str,maxsize,cEndian]=computer;</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; "><span style="color: #4e00ff">if</span> version < 7</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">  <span style="color: #4e00ff">if</span> cEndian == <span style="color: #ca00fa">'B'</span></div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">    endian = <span style="color: #ca00fa">'ieee-be'</span>;</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">  <span style="color: #4e00ff">elseif</span> cEndian == <span style="color: #ca00fa">'L'</span></div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">    endian = <span style="color: #ca00fa">'ieee-le'</span>;</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">  <span style="color: #4e00ff">end</span>;</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; "><span style="color: #4e00ff">elseif</span> (version > 6) && ~bitand(version,6)</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">  <span style="color: #4e00ff">if</span> cEndian == <span style="color: #ca00fa">'B'</span></div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">    endian = <span style="color: #ca00fa">'ieee-le'</span>;</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">  <span style="color: #4e00ff">elseif</span> cEndian == <span style="color: #ca00fa">'L'</span></div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">    endian = <span style="color: #ca00fa">'ieee-be'</span>;</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">  <span style="color: #4e00ff">end</span>;</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(0, 164, 23); "><span style="color: #000000">  version = swapbytes(uint32(version)); </span>%hdr.orig.header_array is already byte-swapped</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(78, 0, 255); ">else</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(202, 0, 250); "><span style="color: #000000">    error(</span>'ERROR:  This is not a simple binary file.  Note that NetStation does not successfully directly convert EGIS files to simple binary format.\n'<span style="color: #000000">);</span></div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(78, 0, 255); ">end<span style="color: #000000">;</span></div><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Courier; min-height: 14.0px"> <br class="webkit-block-placeholder"></p><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; "><span style="color: #4e00ff">if</span> bitand(version,1) == 0</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">    unsegmented = 1;</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(78, 0, 255); ">else</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">    unsegmented = 0;</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(78, 0, 255); ">end<span style="color: #000000">;</span></div><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Courier; min-height: 14.0px"> <br class="webkit-block-placeholder"></p><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">precision = bitand(version,6);</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">Nevents=hdr.orig.header_array(17);</div><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Courier; min-height: 14.0px"> <br class="webkit-block-placeholder"></p><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; "><span style="color: #4e00ff">switch</span> precision</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">    <span style="color: #4e00ff">case</span> 2</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">        trialLength=2*hdr.nSamples*(hdr.nChans+Nevents)+6;</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">        dataType=<span style="color: #ca00fa">'int16'</span>;</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">        dataLength=2;</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">    <span style="color: #4e00ff">case</span> 4</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">        trialLength=4*hdr.nSamples*(hdr.nChans+Nevents)+6;</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">        dataType=<span style="color: #ca00fa">'single'</span>;</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">        dataLength=4;</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">    <span style="color: #4e00ff">case</span> 6</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">        trialLength=8*hdr.nSamples*(hdr.nChans+Nevents)+6;</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">        dataType=<span style="color: #ca00fa">'double'</span>;</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">        dataLength=8;</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(78, 0, 255); ">end</div><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Courier; color: #4e00ff; min-height: 14.0px"> <br class="webkit-block-placeholder"></p><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; "><span style="color: #4e00ff">if</span> unsegmented</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(0, 164, 23); "><span style="color: #000000">    </span>%interpret begtrial and endtrial as sample indices</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">    fseek(fh, 36+Nevents*4, <span style="color: #ca00fa">'bof'</span>); <span style="color: #00a417">%skip over header</span></div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">    fseek(fh, ((begtrial-1)*(hdr.nChans+Nevents)*dataLength), <span style="color: #ca00fa">'cof'</span>); <span style="color: #00a417">%skip previous trials</span></div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">    nSamples  = endtrial-begtrial+1;</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">    trialData = fread(fh, [hdr.nChans+Nevents, nSamples],dataType,endian);</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(78, 0, 255); ">else</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">    fseek(fh, 40+length(hdr.orig.CatLengths)+sum(hdr.orig.CatLengths)+Nevents*4, <span style="color: #ca00fa">'bof'</span>); <span style="color: #00a417">%skip over header</span></div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">    fseek(fh, (begtrial-1)*trialLength, <span style="color: #ca00fa">'cof'</span>); <span style="color: #00a417">%skip over initial segments</span></div><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Courier; color: #00a417; min-height: 14.0px"> <br class="webkit-block-placeholder"></p><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">    trialData=zeros(hdr.nChans,hdr.nSamples,endtrial-begtrial+1);</div><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Courier; min-height: 14.0px"> <br class="webkit-block-placeholder"></p><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">    <span style="color: #4e00ff">for</span> segment=1:(endtrial-begtrial+1)</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">        fseek(fh, 6, <span style="color: #ca00fa">'cof'</span>); <span style="color: #00a417">%skip over segment info</span></div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">        temp = fread(fh, [(hdr.nChans+Nevents), hdr.nSamples],dataType,endian);</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">        trialData(:,:,segment) = temp(1:hdr.nChans,:);</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">    <span style="color: #4e00ff">end</span></div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; color: rgb(78, 0, 255); ">end</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">trialData=trialData(chanindx, :,:);</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; ">fclose(fh);</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Courier; min-height: 14px; "><br></div></div><div><br></div><div><br></div><br><div><div>On Apr 17, 2010, at 2:41 AM, Joseph Dien wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div>Hi,<br>    yeah, there's a bug in the code.  When someone added support for unsegmented files to my EGI simple binary file format code, it appears they didn't test it very well.  There's been a number of problems.  In this case, instead of just skipping the first sample, it's skipping hdr.nChans+Nevents samples, resulting in mangled data.<br><br>I'm at a conference right now but as soon as I get home I'll post a fix and let you know that it's done.  Sigh...<br><br>Joe<br><br><br><br>On Apr 16, 2010, at 12:09 PM, Giovanni Piantoni wrote:<br><br><blockquote type="cite">Dear all,<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">I get this incredible error when I try to read EGI data. If the first<br></blockquote><blockquote type="cite">data point is odd, it works well (EGI_data_odd.png), while if the<br></blockquote><blockquote type="cite">first data point is even, then the result doesn't make much sense<br></blockquote><blockquote type="cite">(EGI_data_even.png).<br></blockquote><blockquote type="cite">You can replicate it with this data:<br></blockquote><blockquote type="cite"><a href="http://bit.ly/cdqzZH">http://bit.ly/cdqzZH</a><br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">and the following code:<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">cfg = [];<br></blockquote><blockquote type="cite">cfg.dataset = 'EGIrecording.raw';<br></blockquote><blockquote type="cite">cfg.trialdef.triallength = Inf;<br></blockquote><blockquote type="cite">def = ft_definetrial(cfg);<br></blockquote><blockquote type="cite">data = ft_preprocessing(def);<br></blockquote><blockquote type="cite">plot(data.trial{1}(1,:)) % odd<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">def.trl(1) = 2;<br></blockquote><blockquote type="cite">data = ft_preprocessing(def);<br></blockquote><blockquote type="cite">plot(data.trial{1}(1,:)) % even<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">Does anybody have an idea on what's going on?<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">Thanks,<br></blockquote><blockquote type="cite">Gio<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">-------------------------------------------------------------------------------------<br></blockquote><blockquote type="cite">MATLAB Version 7.9.0.529 (R2009b)<br></blockquote><blockquote type="cite">Operating System: Linux 2.6.31-20-generic #58-Ubuntu SMP Fri Mar 12<br></blockquote><blockquote type="cite">04:38:19 UTC 2010 x86_64<br></blockquote><blockquote type="cite">Java VM Version: Java 1.6.0_12-b04 with Sun Microsystems Inc. Java<br></blockquote><blockquote type="cite">HotSpot(TM) 64-Bit Server VM mixed mode<br></blockquote><blockquote type="cite">-------------------------------------------------------------------------------------<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">-- <br></blockquote><blockquote type="cite">Giovanni Piantoni, Ph.D. student<br></blockquote><blockquote type="cite">Dept. Sleep & Cognition<br></blockquote><blockquote type="cite">Netherlands Institute for Neuroscience<br></blockquote><blockquote type="cite">Meibergdreef 47<br></blockquote><blockquote type="cite">1105 BA Amsterdam (NL)<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">+31 (0)20 5665492<br></blockquote><blockquote type="cite"><a href="mailto:g.piantoni@nin.knaw.nl">g.piantoni@nin.knaw.nl</a><br></blockquote><blockquote type="cite"><a href="http://www.nin.knaw.nl/research_groups/van_someren_group/">www.nin.knaw.nl/research_groups/van_someren_group/</a><br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">----------------------------------<br></blockquote><blockquote type="cite">The aim of this list is to facilitate the discussion between users of the FieldTrip  toolbox, to share experiences and to discuss new ideas for MEG and EEG analysis. See also <a href="http://listserv.surfnet.nl/archives/fieldtrip.html">http://listserv.surfnet.nl/archives/fieldtrip.html</a> and <a href="http://www.ru.nl/neuroimaging/fieldtrip">http://www.ru.nl/neuroimaging/fieldtrip</a>.<br></blockquote><blockquote type="cite"><EGI_data_odd.png><EGI_data_even.png><br></blockquote><br>----------------------------------<br>The aim of this list is to facilitate the discussion between users of the FieldTrip  toolbox, to share experiences and to discuss new ideas for MEG and EEG analysis. See also <a href="http://listserv.surfnet.nl/archives/fieldtrip.html">http://listserv.surfnet.nl/archives/fieldtrip.html</a> and <a href="http://www.ru.nl/neuroimaging/fieldtrip">http://www.ru.nl/neuroimaging/fieldtrip</a>.<br></div></blockquote></div><br></body></html><p>----------------------------------</p>
<p>The aim of this list is to facilitate the discussion between users of the FieldTrip  toolbox, to share experiences and to discuss new ideas for MEG and EEG analysis.</p>
<p>  http://listserv.surfnet.nl/archives/fieldtrip.html</p>
<p>  http://www.ru.nl/fcdonders/fieldtrip/</p>