<div dir="ltr"><div>Dear Fieldtrip community,</div><div><br></div><div>I'm estimating Functional Connectivity between 100 source-reconstructed signals using the debiased wPLI and I have a couple of questions about my results (code snippet below). </div><div><br></div><div>1) Regardless of whether I use my full time window of interest (0-1.5 s) or whether I estimate wPLI for two separate shorter time windows (0-.7 s and .7-1.5 s), the results are always identical to one another. Is this normal behaviour in wPLI analyses or is there something potentially wrong with how I've implemented it? </div><div><br></div><div>2) I notice that wPLI values are way lower for low-frequencies (4-7hz) than for higher-frequencies (8-12hz and 15-30hz). While this could be a real effect associated with my task, the fact that this result is consistent across different conditions makes me wonder whether I've done something wrong in the ft_freqanalysis configuration. </div><div><br></div><div>Thanks a lot in advance for any help anyone can provide! </div><div><br></div><div>-----------</div><div><br></div><div>cfg                 = [ ];<br></div><div>data               = ft_preprocessing(cfg,rwdata);</div><div>        <br>%resample data<br>cfg                      = [ ];<br>cfg.resamplefs   = 250;<br>data                    = ft_resampledata(cfg, data);</div><div><br></div><div>data =<br>  struct with fields:<br><br>      fsample: 250<br>      trial:   {1×117 cell}<br>      time:  {1×117 cell}<br>      label: {100×1 cell}<br>      cfg:    [1×1 struct]<br>        <br>% next, call the ft_freqanalysis function in our source data<br>cfg                     = [ ];<br>cfg.output          = 'fourier';<br>cfg.method        = 'mtmfft';<br>cfg.taper            = 'dpss';<br>cfg.foi                 = linspace(4,30,30);<br>cfg.tapsmofrq     = 4;<br>cfg.toi                 = 0:.02:1.5;   % try 0:.02:.7 and .7:.02:1.5<br>tf_data                = ft_freqanalysis(cfg,data);</div><div><br></div><div>tf_data = <br>  struct with fields:<br><br>            label:     {100×1 cell}<br>            dimord: 'rpttap_chan_freq'<br>            freq:       [1×30 double]<br>            fourierspctrm: [4563×100×30 double]<br>            cumsumcnt: [117×1 double]<br>            cumtapcnt:   [117×1 double]<br>            cfg:               [1×1 struct]<br>        <br>% estimate wPLI values<br>cfg                    = [ ];<br>cfg.method       = 'wpli_debiased'; <br>connect_data   = ft_connectivityanalysis(cfg,tf_data);<br></div><div><br></div><div>connect_data = <br>  struct with fields:<br><br>               label:     {100×1 cell}<br>               dimord:  'chan_chan_freq'<br>               wpli_debiasedspctrm: [100×100×30 double]<br>               freq:  [1×30 double]<br>               cfg:   [1×1 struct]<br></div><br clear="all"><div><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature"><div>Best,</div><div><br></div><div dir="ltr">Sergio.<br><div><div><br><div></div><div></div></div></div></div></div></div></div>