<div dir="ltr">Hi Jorn and all,<div><br></div><div>As I said before, everything works ok when I use ft_trialfun_general instead of this trialfun. However, it is crucial for me to transform the event values with that trialfun. And now I use 'trigger' instead of 'STATUS' but it doesn't change much.  Any other idea? THANK YOU! </div><div><br></div><div>This is my script again:</div><div><br></div><div><div>% CONGRUENT TRIALS DEFINITION</div><div><br></div><div>cfg = [ ] ;</div><div>cfg.dataset    = 'location';</div><div>event = ft_read_event('location');</div><div>cfg.trialdef.eventtype = 'trigger';  </div><div>cfg.trialdef.eventvalue = cgrmrk;</div><div>cfg.trialdef.prestim    = 0.2;</div><div>cfg.trialdef.poststim   = 1;  </div><div>cfg.trialfun   = 'trialfun_bit2dec';</div><div>[cfg] = ft_definetrial(cfg);</div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Oct 1, 2014 at 4:03 AM, "Jörn M. Horschig" <span dir="ltr"><<a href="mailto:jm.horschig@donders.ru.nl" target="_blank">jm.horschig@donders.ru.nl</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">Hi Ana,<br>
<br>
from the first call with eventtype = '?', the output says<span><br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
event type: 'trigger' with event values: 'DIN1' 'DIN2' 'DIN4' 'DIN8'<br>
</blockquote>
<br></span>
This means that there is one event type in our data, namely 'trigger', and the only trigger values in your data are 'DIN1', 'DIN2', 'DIN4' and 'DIN8'. FieldTrip works that way that it passes on the cfg.trialdef structure to the trialfun that is specified. In your particular case, trialfun_bit2dec does not seem to have a very user-friendly error message, but the error message means that whatever eventtype and eventvalues you asked for, they are not present in your data. When looking at what you define, you can probably easily spot that you ask for cfg.trialdef.eventtype = 'STATUS'. However, checking back the output that you created with '?', there is no event type 'STATUS' in your data. Therefore, everything works fine with your trialfun. If you try specifying the trialdef properly, everything should work fine.<br>
<br>
A general advise when using an own trial fun and getting an error message: Try your code without specifying cfg.trialfun first. Then FieldTrip will use the standard trialfun, which should work if all your cfg-settings are fine. If the standard trialfun runs without errors, then your trialfun should do so too. If your trialfun, however, then crashes, the error is most likely in the trialfun that you used, and not in the cfg-settings. In your case, however, I am fairly certain that the cfg-settings you specified were causing your problem.<br>
<br>
I hope this helps.<br>
Best,<br>
Jörn<div><div><br>
<br>
<br>
<br>
On 9/30/2014 10:27 PM, Ana Laura Diez Martini wrote:<br>
</div></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div><div>
For a more simple check, when I try to read the events without the trialfun ( so it uses  ft_trialfun_general  by default) I get the original event values:<br>
<br>
 >> cfg = [];<br>
>> cfg.dataset = '27CW1.RAW';<br>
>> cfg.trialdef.eventtype  = '?';<br>
>> cfg=ft_definetrial(cfg);<br>
<br>
Warning: no trialfun was specified, using ft_trialfun_general<br>
> In ft_definetrial at 135<br>
evaluating trialfunction 'ft_trialfun_general'<br>
reading the events from '27CW1.RAW'<br>
the following events were found in the datafile<br>
event type: 'trigger' with event values: 'DIN1' 'DIN2' 'DIN4' 'DIN8'<br>
no trials have been defined yet, see FT_DEFINETRIAL for further help<br>
found 750 events<br>
created 0 trials<br>
the call to "ft_definetrial" took 4 seconds<br>
<br>
Then I try to use the trialfun, I get the same error<br>
<br>
>> cfg = [];<br>
>> cfg.dataset = '27CW1.RAW';<br>
>> cfg.trialfun   = 'trialfun_bit2dec';<br>
>> cfg.trialdef.eventtype  = '?';<br>
>> cfg=ft_definetrial(cfg);<br>
evaluating trialfunction 'trialfun_bit2dec'<br>
<br>
Attempted to access trl(:,1); index out of bounds because size(trl)=[0,0].<br>
<br>
Error in trialfun_bit2dec (line 66)<br>
idx = any(diff(trl(:,1),1,1),2);<br>
<br>
Error in ft_definetrial (line 169)<br>
    trl   = feval(cfg.trialfun, cfg);<br>
<br>
So there is something the trialfun_bit2dec does that events cannot be read anymore.<br>
<br>
<br></div></div><span>
On Mon, Sep 29, 2014 at 9:01 PM, Arjen Stolk <<a href="mailto:a.stolk8@gmail.com" target="_blank">a.stolk8@gmail.com</a> <mailto:<a href="mailto:a.stolk8@gmail.com" target="_blank">a.stolk8@gmail.com</a>>> wrote:<br>
<br>
    Hi Ana Laura,<br>
<br>
    Your 'trl' is empty, which it shouldn't be. So anytime you try to<br>
    index an element in it, it will throw an error.<br>
<br>
    Can you check what 'event.values' you find in your dataset? And<br>
    compare those with any of the ones falling under the switch case<br>
    statement? One way to do this, is to put a debug marker (red dot)<br>
    at the 'end' of the first for-loop (judging from the wiki). Then<br>
    check the value of event(i).value, and click the continue button<br>
    to move on to the next. An alternative way is to put a debug<br>
    marker after event = ft_read_event and to instantly check all<br>
    values of event with "[event(:).value]".<br>
<br>
    Goodluck,<br>
    Arjen<br>
<br>
    2014-09-30 6:20 GMT+02:00 Ana Laura Diez Martini<br></span>
    <<a href="mailto:diezmartini@gmail.com" target="_blank">diezmartini@gmail.com</a> <mailto:<a href="mailto:diezmartini@gmail.com" target="_blank">diezmartini@gmail.com</a>><u></u>>:<span><br>
<br>
        This is my attempt of adapting the code for the new Fieldtrip<br>
<br>
         % TRIAL DEFINITION<br>
<br>
            cfg=[];<br>
            cfg.dataset = 'myfile';<br>
<br>
            hdr = ft_read_header( 'myfile');<br>
            dat = ft_read_data('myfile');<br>
            cfg.trialfun                = 'trialfun_bit2dec';<br>
            cfg.trialdef.eventtype    = 'STATUS';<br>
            cfg.trialdef.eventvalue   = cgrmrk; % stimulus triggers<br>
            cfg.trialdef.prestim      = 0.2;<br>
            cfg.trialdef.poststim     = 1;<br>
<br>
            cfg.reref         = 'yes';<br>
            cfg.refchannel    = ['all'];<br>
            cfg = ft_definetrial(cfg);<br>
<br>
        again the error is:<br>
<br>
        Attempted to access trl(:,1); index out of bounds because<br>
        size(trl)=[0,0].<br>
<br>
        Error in trialfun_bit2dec (line 66)<br>
        idx = any(diff(trl(:,1),1,1),2);<br>
<br>
        Error in ft_definetrial (line 169)<br>
            trl   = feval(cfg.trialfun, cfg);<br>
<br>
        Error in process_ERP_1_fieldtrip (line 106)<br>
            cfg = ft_definetrial(cfg);<br>
<br>
<br>
<br>
        On Mon, Sep 29, 2014 at 12:11 PM, Ana Laura Diez Martini<br></span><span>
        <<a href="mailto:diezmartini@gmail.com" target="_blank">diezmartini@gmail.com</a> <mailto:<a href="mailto:diezmartini@gmail.com" target="_blank">diezmartini@gmail.com</a>><u></u>> wrote:<br>
<br>
            Dear Arjen and Nietzsche,<br>
<br>
            I tried debugging with dbstop if error and cfg.debug =<br>
            'saveonerror' and matlab points to:<br>
<br>
            % discard the repeated values<br>
            idx = any(diff(trl(:,1),1,1),2);<br>
            trl = trl(idx,:);<br>
<br>
            It does seem it is not reading the events. When I read<br>
            them with the raw data, they seem to be there, with the<br>
            DIN prefix. Any idea?<br>
<br>
            On Mon, Sep 29, 2014 at 8:57 AM, Arjen Stolk<br></span><span>
            <<a href="mailto:a.stolk8@gmail.com" target="_blank">a.stolk8@gmail.com</a> <mailto:<a href="mailto:a.stolk8@gmail.com" target="_blank">a.stolk8@gmail.com</a>>> wrote:<br>
<br>
                Hey Ana Laura,<br>
<br>
                Seems from the error message you're getting<br>
<br>
                "Attempted to access trl(:,1); index out of bounds<br>
                because size(trl)=[0,0]."<br>
<br>
                that none of the triggers were found in your event<br>
                data. You might wanna check why this is happening, by<br>
                debugging 'trialfun_bit2dec' on your input.<br>
<br>
                Best,<br>
                Arjen<br>
<br>
<br>
<br>
                2014-09-29 19:00 GMT+02:00 Ana Laura Diez Martini<br></span>
                <<a href="mailto:diezmartini@gmail.com" target="_blank">diezmartini@gmail.com</a> <mailto:<a href="mailto:diezmartini@gmail.com" target="_blank">diezmartini@gmail.com</a>><u></u>>:<div><div><br>
<br>
                    Thank you again Nietzsche!!<br>
<br>
                    Yes, I was referring to trialfun_bit2dec. I<br>
                    followed your advice and I changed definetrial to<br>
                    ft_definetrial and I confirm the function was<br>
                    added to my paths. After doing this, the error I<br>
                    get is:<br>
<br>
                    Attempted to access trl(:,1); index out of bounds<br>
                    because size(trl)=[0,0].<br>
<br>
                    Error in trialfun_bit2dec (line 66)<br>
                    idx = any(diff(trl(:,1),1,1),2);<br>
<br>
                    Error in ft_definetrial (line 169)<br>
                        trl   = feval(cfg.trialfun, cfg);<br>
<br>
                    Error in process_ERP_1_fieldtrip (line 95)<br>
                        cfg = ft_definetrial(cfg);<br>
<br>
                    This is again the trial definition part in which I<br>
                    think I added what I think are useless lines but I<br>
                    was just trying to make it run it.<br>
<br>
                      % TRIAL DEFINITION<br>
                        cfg=[];<br>
                    cfg.filename = ['myfolders/subject.RAW'];<br>
                    cfg.headerfile = ['myfolders/subject.RAW'];<br>
                    cfg.dataset = ['myfolders/subject.RAW'];<br>
                    cfg.trialfun = 'trialfun_bit2dec';  %% trialfun<br>
                    definition<br>
                    cfg.trialdef.eventtype    = 'STATUS';<br>
                    cfg.trialdef.eventvalue   = cgrmrk; % stimulus<br>
                    triggers<br>
                    cfg.trialdef.prestim      = 0.2; % latency in seconds<br>
                    cfg.trialdef.poststim     = 1;   % latency in seconds<br>
                        cfg = ft_definetrial(cfg);<br>
<br>
                        trl = cfg.trl;<br>
                        cfg=[];<br>
                    cfg.dataset = ['myfolders/subject.RAW'];<br>
                    cfg.trl     = trl;<br>
                    cfg.reref     = 'yes';<br>
                    cfg.refchannel    = ['all'];<br>
<br>
                    Unfortunately using this function is crucial to my<br>
                    analysis because I would like to use only<br>
                    Fieldtrip to analyse all my data. Thank you for<br>
                    taking all this time.<br>
<br>
                    On Sun, Sep 28, 2014 at 10:53 PM, Lam, Nietzsche<br>
                    <<a href="mailto:n.lam@fcdonders.ru.nl" target="_blank">n.lam@fcdonders.ru.nl</a><br></div></div><span>
                    <mailto:<a href="mailto:n.lam@fcdonders.ru.nl" target="_blank">n.lam@fcdonders.ru.nl</a>><u></u>> wrote:<br>
<br>
                        Hi again Ana Laura,<br>
<br>
                        One other thing that I thought of was to make<br>
                        sure that the function "trialfun_bit2dec" is<br>
                        added to your paths in matlab, so that<br>
                        ft_definetrial can find this function.<br>
<br>
                        By updating your fieldtrip to the most recent<br>
                        version "trialfun_bit2dec" is *not* included.<br>
                        So you'll need to store that as a separate .m<br>
                        file in a location that can be accessed by the<br>
                        paths set in matlab.<br>
<br>
                        Nietzsche<br>
<br>
                        ----- Original Message -----<br>
                        > From: "Ana Laura Diez Martini"<br>
                        <<a href="mailto:diezmartini@gmail.com" target="_blank">diezmartini@gmail.com</a><br></span><span>
                        <mailto:<a href="mailto:diezmartini@gmail.com" target="_blank">diezmartini@gmail.com</a>><u></u>><br>
                        > To: "FieldTrip discussion list"<br>
                        <<a href="mailto:fieldtrip@science.ru.nl" target="_blank">fieldtrip@science.ru.nl</a><br></span><div><div>
                        <mailto:<a href="mailto:fieldtrip@science.ru.nl" target="_blank">fieldtrip@science.ru.<u></u>nl</a>>><br>
                        > Sent: Saturday, 27 September, 2014 7:18:25 PM<br>
                        > Subject: Re: [FieldTrip] Where to add a<br>
                        trialfun?<br>
                        > Thank you Nietzsche!<br>
                        ><br>
                        ><br>
                        > I added it where you suggested and now this<br>
                        is the error I get:<br>
                        ><br>
                        ><br>
                        ><br>
                        > Error using feval<br>
                        > Invalid function name 'trialfun_bit2dec(cfg)'.<br>
                        ><br>
                        ><br>
                        > Error in definetrial (line 105)<br>
                        > trl = feval(cfg.trialfun, cfg);<br>
                        ><br>
                        ><br>
                        > Error in process_ERP_1_fieldtrip (line 97)<br>
                        > cfg = definetrial(cfg);<br>
                        ><br>
                        ><br>
                        > Something I was worried about is that I use<br>
                        an old version of<br>
                        > Fieldtrip for my scripts because I wrote<br>
                        them long ago and this<br>
                        > trialfun uses the new format (with<br>
                        'ft_s',etc.). Could this affect it<br>
                        > in any way?<br>
                        ><br>
                        ><br>
                        > Thanks again!<br>
                        ><br>
                        ><br>
                        > On Fri, Sep 26, 2014 at 11:05 PM, Lam,<br>
                        Nietzsche <<br>
                        > <a href="mailto:n.lam@fcdonders.ru.nl" target="_blank">n.lam@fcdonders.ru.nl</a><br></div></div><div><div>
                        <mailto:<a href="mailto:n.lam@fcdonders.ru.nl" target="_blank">n.lam@fcdonders.ru.nl</a>> > wrote:<br>
                        ><br>
                        ><br>
                        > Hi Ana Laura,<br>
                        ><br>
                        > In general, you need to determine which<br>
                        trial function (Trialfun) to<br>
                        > use when using definetrial (see this tutorial:<br>
                        ><br>
                        <a href="http://fieldtrip.fcdonders.nl/tutorial/preprocessing" target="_blank">http://fieldtrip.fcdonders.nl/<u></u>tutorial/preprocessing</a><br>
                        under "do the<br>
                        > trial definition for the fully incongruent<br>
                        (FIC) condition).<br>
                        ><br>
                        > Please try adding this: "cfg.trialfun =<br>
                        'trialfun_bit2dec(cfg)". to<br>
                        > your code before calling definetrial (see<br>
                        below).<br>
                        ><br>
                        > % TRIAL DEFINITION<br>
                        > cfg=[];<br>
                        > cfg.filename = ['my/folders/', subject, '.RAW'];<br>
                        > cfg.headerfile = ['my/folders/', subject,<br>
                        '.RAW'];<br>
                        ><br>
                        > cfg.trialdef.eventtype = 'STATUS';<br>
                        > cfg.trialdef.eventvalue = cgrmrk;<br>
                        > cfg.trialdef.prestim = 0.2;<br>
                        > cfg.trialdef.poststim = 1;<br>
                        > cfg.trialdef.eventtype=?;<br>
                        > cfg.trialfun = 'trialfun_bit2dec(cfg) %%<br>
                        trialfun definition<br>
                        > cfg = definetrial(cfg);<br>
                        ><br>
                        ><br>
                        > As an addition note: based on your error<br>
                        message, it seemed that the<br>
                        > problem was in the function<br>
                        trialfun_bit2dec. However, from the code<br>
                        > you showed us, you haven't referenced/called<br>
                        this function. I was<br>
                        > wondering if the code you provide<br>
                        corresponded to the code that<br>
                        > created your error message? I'm guessing you<br>
                        ran [trl]<br>
                        > =trialfun_bit2dec(cfg) directly (i.e. not<br>
                        via definetrial). In which<br>
                        > case, it was looking for<br>
                        cfg.trialdef.eventtype. You can call<br>
                        > trialfun_bit2dec as long as you have all the<br>
                        relevant information in<br>
                        > the cfg (which is in the code you showed<br>
                        us). Hope this helps.<br>
                        ><br>
                        > Best,<br>
                        > Nietzsche<br>
                        ><br>
                        ><br>
                        ><br>
                        ><br>
                        ><br>
                        ><br>
                        > ----- Original Message -----<br>
                        > > From: "Ana Laura Diez Martini" <<br>
                        <a href="mailto:diezmartini@gmail.com" target="_blank">diezmartini@gmail.com</a><br></div></div><span>
                        <mailto:<a href="mailto:diezmartini@gmail.com" target="_blank">diezmartini@gmail.com</a>> ><br>
                        > > To: "FieldTrip discussion list" <<br>
                        <a href="mailto:fieldtrip@science.ru.nl" target="_blank">fieldtrip@science.ru.nl</a><br></span><div><div>
                        <mailto:<a href="mailto:fieldtrip@science.ru.nl" target="_blank">fieldtrip@science.ru.<u></u>nl</a>> ><br>
                        > > Sent: Saturday, 27 September, 2014 2:42:21 AM<br>
                        > > Subject: [FieldTrip] Where to add a trialfun?<br>
                        > > Hello all! I'm having a simple problem. I<br>
                        want to add this trialfun:<br>
                        > ><br>
                        > ><br>
                        <a href="http://fieldtrip.fcdonders.nl/faq/how_can_i_transform_trigger_values_from_bits_to_decimal_representation_with_a_trialfun" target="_blank">http://fieldtrip.fcdonders.nl/<u></u>faq/how_can_i_transform_<u></u>trigger_values_from_bits_to_<u></u>decimal_representation_with_a_<u></u>trialfun</a><br>
                        > ><br>
                        > ><br>
                        > ><br>
                        > > I get this error:<br>
                        > ><br>
                        > ><br>
                        > ><br>
                        > > Reference to non-existent field 'trialdef'.<br>
                        > ><br>
                        > ><br>
                        > > Error in trialfun_bit2dec (line 52)<br>
                        > > if strcmp(event(i).type,<br>
                        cfg.trialdef.eventtype)<br>
                        > ><br>
                        > ><br>
                        > > I'm quite sure it's because I'm not<br>
                        writing it in the correct part<br>
                        > > of<br>
                        > > my script. This is my trial definition<br>
                        part. Where should I add it<br>
                        > > and<br>
                        > > how should I write the line?<br>
                        > ><br>
                        > ><br>
                        > ><br>
                        > > % TRIAL DEFINITION<br>
                        > > cfg=[];<br>
                        > > cfg.filename = ['my/folders/', subject,<br>
                        '.RAW'];<br>
                        > > cfg.headerfile = ['my/folders/', subject,<br>
                        '.RAW'];<br>
                        > ><br>
                        > ><br>
                        > > cfg.trialdef.eventtype = 'STATUS';<br>
                        > > cfg.trialdef.eventvalue = cgrmrk;<br>
                        > > cfg.trialdef.prestim = 0.2;<br>
                        > > cfg.trialdef.poststim = 1;<br>
                        > > cfg.trialdef.eventtype=?;<br>
                        > ><br>
                        > ><br>
                        > > cfg = definetrial(cfg);<br>
                        > ><br>
                        > ><br>
                        > > trl = cfg.trl;<br>
                        > > cfg=[];<br>
                        > > cfg.dataset = ['my/folders/', subject,<br>
                        '.RAW'];<br>
                        > > cfg.trl = trl;<br>
                        > > cfg.reref = 'yes';<br>
                        > > cfg.refchannel = ['all'];<br>
                        > ><br>
                        > ><br>
                        > > THANKS!<br>
                        > ><br>
                        ______________________________<u></u>_________________<br>
                        > > fieldtrip mailing list<br>
                        > > <a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.nl</a><br></div></div>
                        <mailto:<a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.<u></u>nl</a>><span><br>
                        > ><br>
                        <a href="http://mailman.science.ru.nl/mailman/listinfo/fieldtrip" target="_blank">http://mailman.science.ru.nl/<u></u>mailman/listinfo/fieldtrip</a><br>
                        ><br>
                        > --<br>
                        > Nietzsche H.L. Lam, MSc<br>
                        > PhD Candidate<br>
                        ><br>
                        > Max Planck Institute for Psycholinguistics<br>
                        > Wundtlaan 1, 6525 XD Nijmegen, The Netherlands<br>
                        ><br>
                        > Donders Institute for Brain, Cognition and<br>
                        Behaviour,<br>
                        > Centre for Cognitive Neuroimaging,<br>
                        > Kapittelweg 29, 6525EN Nijmegen, The Netherlands<br>
                        ><br>
                        > <a href="mailto:n.lam@fcdonders.ru.nl" target="_blank">n.lam@fcdonders.ru.nl</a><br></span>
                        <mailto:<a href="mailto:n.lam@fcdonders.ru.nl" target="_blank">n.lam@fcdonders.ru.nl</a>><br>
                        > <a href="tel:%2B31-24-3668219" value="+31243668219" target="_blank">+31-24-3668219</a> <tel:%2B31-24-3668219><br>
                        ><br>
                        ><br>
                        > <a href="http://neurobiologyoflanguage.com" target="_blank">neurobiologyoflanguage.com</a><br>
                        <<a href="http://neurobiologyoflanguage.com" target="_blank">http://<u></u>neurobiologyoflanguage.com</a>><span><br>
                        > ______________________________<u></u>_________________<br>
                        > fieldtrip mailing list<br>
                        > <a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.nl</a><br></span>
                        <mailto:<a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.<u></u>nl</a>><span><br>
                        ><br>
                        <a href="http://mailman.science.ru.nl/mailman/listinfo/fieldtrip" target="_blank">http://mailman.science.ru.nl/<u></u>mailman/listinfo/fieldtrip</a><br>
                        ><br>
                        ><br>
                        > ______________________________<u></u>_________________<br>
                        > fieldtrip mailing list<br>
                        > <a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.nl</a><br></span>
                        <mailto:<a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.<u></u>nl</a>><span><br>
                        ><br>
                        <a href="http://mailman.science.ru.nl/mailman/listinfo/fieldtrip" target="_blank">http://mailman.science.ru.nl/<u></u>mailman/listinfo/fieldtrip</a><br>
<br>
                        --<br>
                        Nietzsche H.L. Lam, MSc<br>
                        PhD Candidate<br>
<br>
                        Max Planck Institute for Psycholinguistics<br>
                        Wundtlaan 1, 6525 XD Nijmegen, The Netherlands<br>
<br>
                        Donders Institute for Brain, Cognition and<br>
                        Behaviour,<br>
                        Centre for Cognitive Neuroimaging,<br>
                        Kapittelweg 29, 6525EN Nijmegen, The Netherlands<br>
<br>
                        <a href="mailto:n.lam@fcdonders.ru.nl" target="_blank">n.lam@fcdonders.ru.nl</a><br></span>
                        <mailto:<a href="mailto:n.lam@fcdonders.ru.nl" target="_blank">n.lam@fcdonders.ru.nl</a>><br>
                        <a href="tel:%2B31-24-3668219" value="+31243668219" target="_blank">+31-24-3668219</a> <tel:%2B31-24-3668219><br>
<br>
<br>
                        <a href="http://neurobiologyoflanguage.com" target="_blank">neurobiologyoflanguage.com</a><br>
                        <<a href="http://neurobiologyoflanguage.com" target="_blank">http://<u></u>neurobiologyoflanguage.com</a>><span><br>
                        ______________________________<u></u>_________________<br>
                        fieldtrip mailing list<br>
                        <a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.nl</a><br></span>
                        <mailto:<a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.<u></u>nl</a>><span><br>
                        <a href="http://mailman.science.ru.nl/mailman/listinfo/fieldtrip" target="_blank">http://mailman.science.ru.nl/<u></u>mailman/listinfo/fieldtrip</a><br>
<br>
<br>
<br>
                    ______________________________<u></u>_________________<br>
                    fieldtrip mailing list<br>
                    <a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.nl</a><br></span>
                    <mailto:<a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.<u></u>nl</a>><span><br>
                    <a href="http://mailman.science.ru.nl/mailman/listinfo/fieldtrip" target="_blank">http://mailman.science.ru.nl/<u></u>mailman/listinfo/fieldtrip</a><br>
<br>
<br>
<br>
                ______________________________<u></u>_________________<br>
                fieldtrip mailing list<br></span>
                <a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.nl</a> <mailto:<a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.<u></u>nl</a>><span><br>
                <a href="http://mailman.science.ru.nl/mailman/listinfo/fieldtrip" target="_blank">http://mailman.science.ru.nl/<u></u>mailman/listinfo/fieldtrip</a><br>
<br>
<br>
<br>
<br>
        ______________________________<u></u>_________________<br>
        fieldtrip mailing list<br></span>
        <a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.nl</a> <mailto:<a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.<u></u>nl</a>><span><br>
        <a href="http://mailman.science.ru.nl/mailman/listinfo/fieldtrip" target="_blank">http://mailman.science.ru.nl/<u></u>mailman/listinfo/fieldtrip</a><br>
<br>
<br>
<br>
    ______________________________<u></u>_________________<br>
    fieldtrip mailing list<br></span>
    <a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.nl</a> <mailto:<a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.<u></u>nl</a>><span><br>
    <a href="http://mailman.science.ru.nl/mailman/listinfo/fieldtrip" target="_blank">http://mailman.science.ru.nl/<u></u>mailman/listinfo/fieldtrip</a><br>
<br>
<br>
<br>
<br>
______________________________<u></u>_________________<br>
fieldtrip mailing list<br>
<a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.nl</a><br>
<a href="http://mailman.science.ru.nl/mailman/listinfo/fieldtrip" target="_blank">http://mailman.science.ru.nl/<u></u>mailman/listinfo/fieldtrip</a><br>
</span></blockquote>
<br>
<br>
-- <br>
Jörn M. Horschig<br>
PhD Student<span><br>
Donders Institute for Brain, Cognition and Behaviour<br></span>
Centre for Cognitive Neuroimaging<br>
Radboud University Nijmegen<br>
Neuronal Oscillations Group<br>
FieldTrip Development Team<br>
<br>
P.O. Box 9101<br>
NL-6500 HB Nijmegen<br>
The Netherlands<br>
<br>
Contact:<br>
E-Mail: <a href="mailto:jm.horschig@donders.ru.nl" target="_blank">jm.horschig@donders.ru.nl</a><br>
Tel:    <a href="tel:%2B31-%280%2924-36-68493" value="+31243668493" target="_blank">+31-(0)24-36-68493</a><br>
Web: <a href="http://www.ru.nl/donders" target="_blank">http://www.ru.nl/donders</a><br>
<br>
Visiting address:<br>
Trigon, room 2.30<br>
Kapittelweg 29<br>
NL-6525 EN Nijmegen<br>
The Netherlands<div><div><br>
<br>
______________________________<u></u>_________________<br>
fieldtrip mailing list<br>
<a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.nl</a><br>
<a href="http://mailman.science.ru.nl/mailman/listinfo/fieldtrip" target="_blank">http://mailman.science.ru.nl/<u></u>mailman/listinfo/fieldtrip</a><br>
</div></div></blockquote></div><br></div></div></div>