<html><head></head><body><div style="font-family: Verdana;font-size: 12.0px;"><div style="font-family: Verdana;font-size: 12.0px;">
<div style="font-family: Verdana;font-size: 12.0px;">
<div style="font-family: Verdana;font-size: 12.0px;">
<div>Dear fieldtrippers, </div>

<div> </div>

<div>I have excluded noisy channels from my data using</div>

<div> </div>

<div>data = ft_rejectvisual(cfg, data);<br/>
data = ft_rejectartifact(cfg, data);</div>

<div> </div>

<div>and now want to interpolate them. To do so, I am first defining the neighbours using a zebris file:</div>

<div> </div>

<div>
<div>cfg                         = [];<br/>
cfg.method                  = 'template';<br/>
cfg.layout                  = 'EEG1010.lay';<br/>
cfg.feedback                = 'yes';<br/>
cfg.elec                    = ft_read_sens('Maque.sfp');</div>

<div>neighbours = ft_prepare_neighbours(cfg,data_con);</div>

<div> </div>

<div>With data_con being the data that still has all the channels in it. This gives me the variable neighbours that does indeed contain the 6 neighbours for my missing channel. However, when I try to use </div>

<div> </div>

<div>
<div>cfg.method                  = 'average';<br/>
cfg.missingchannel          = {'Fp1', 'Fp2', 'AF7', 'AF8'};<br/>
cfg.neighbours              = neighbours;</div>

<div>data = ft_channelrepair(cfg,data);</div>

<div> </div>

<div>I get the following message for each and every trial: trying to reconstruct missing channel Fp1 - cannot reconstruct channel - no neighbours in the original data or in the sensor position.</div>

<div> </div>

<div>Does anyone have an idea why this is not working properly?</div>
</div>
</div>

<div> </div>

<div>Cheers, </div>

<div>Irene</div>
</div>
</div>
</div></div></body></html>