<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<div id="__MailbirdStyleContent" style="font-size: 10pt;font-family: arial;color: #000000">
Dear community, 
<div class="mb_sig"></div>
<div><br>
</div>
<div>My name is Inês and I'm using fieldtrip to look at EEG data acquired from a 32-channel BioSemi using BCI2000 in my BCI experiment. </div>
<div><br>
</div>
<div>Currently I have been looking at the alpha band power over averaged trials in a particular condition, and to do that I have been using both ft_topoplotER and ft_multiplotER (). </div>
<div>My problem is that although my data has 32 channels (all specified under <span style="font-family: Lucida Console">
data.label</span>), both plots only display a few main channels - 20 to be exact.</div>
<div>I'm including an example image of the layout and the corresponding topoplot. The same channels are shown in multiplot. Here's my code:</div>
<div><br>
</div>
<div><span style="font-family: Lucida Console">%preprocessing for each subject and extracting desired trials%</span></div>
<div>
<div><span style="font-family: Lucida Console">cfg=[];</span></div>
<div><span style="font-family: Lucida Console">data_alltrials = ft_appenddata(cfg, data{:});</span></div>
</div>
<div><span style="font-family: Lucida Console"><br>
</span></div>
<div>
<div><span style="font-family: Lucida Console">% FFT</span></div>
<div><span style="font-family: Lucida Console">freq_cfg = [];</span></div>
<div><span style="font-family: Lucida Console">freq_cfg.channel = 'all';</span></div>
<div><span style="font-family: Lucida Console">freq_cfg.method = 'mtmfft';</span></div>
<div><span style="font-family: Lucida Console">freq_cfg.output = 'pow';</span></div>
<div><span style="font-family: Lucida Console">freq_cfg.taper  = 'hanning';</span></div>
<div><span style="font-family: Lucida Console">freq_cfg.keeptrials = 'yes';</span></div>
<div><span style="font-family: Lucida Console">freq_cfg.foi = foi;</span></div>
<div><span style="font-family: Lucida Console">freq_cfg.tapsmofrq = 1;</span></div>
<div><span style="font-family: Lucida Console">fft_alltrials = ft_freqanalysis(freq_cfg, data_alltrials);</span></div>
<div><span style="font-family: Lucida Console">disp('Preprocessing done.');</span></div>
</div>
<div><span style="font-family: Lucida Console"><br>
</span></div>
<div>
<div><span style="font-family: Lucida Console">cfg = []; cfg.layout = layout;</span></div>
<div><span style="font-family: Lucida Console">layout = ft_prepare_layout(cfg, data_alltrials);</span></div>
<div><span style="font-family: Lucida Console">ft_layoutplot(cfg, data_alltrials)</span></div>
</div>
<div><span style="font-family: Lucida Console"><br>
</span></div>
<div>
<div><span style="font-family: Lucida Console">cfg = [];</span></div>
<div><span style="font-family: Lucida Console">cfg.layout = 'biosemi32.lay';</span></div>
<div><span style="font-family: Lucida Console">channel = ft_channelselection({'all'},data_alltrials.label);</span></div>
<div><span style="font-family: Lucida Console">cfg.channel = channel;</span></div>
<div><span style="font-family: Lucida Console">cfg.colorbar = 'yes';</span></div>
<div><span style="font-family: Lucida Console">cfg.showlabels = 'yes';</span></div>
<div><span style="font-size: 10pt;line-height: 1.5"><span style="font-family: Lucida Console">figure(); ft_topoplotER(cfg, fft_alltrials); </span></span></div>
<div><span style="font-size: 10pt;line-height: 1.5"><span style="font-family: Lucida Console">figure(); ft_multiplotER(cfg, fft_alltrials);</span></span></div>
</div>
<div><br>
</div>
<div>So I guess my question is: is there a way to change the density of electrodes plotted, or even show them all?</div>
<div>Can someone tell me if there is something wrong with the cfg settings I use or if I am doing something wrong at any other place? </div>
<div>Looking forward to hear from you all!</div>
<div><br>
</div>
<div>Best,</div>
<div>Inês</div>
<div><br>
</div>
</div>
</body>
</html>