<div dir="ltr">Dear Fieldtrip community,<div><br></div><div>I've been working on recreating one of the works of my predecessor with Fieldtrip. However, there's a discrepancy between high gamma signals that was filtered using Fieldtrip and high gamma signals that was filtered using other MATLAB functions. More specifically, it seems like there's always some lag between those two data and I've not been able to remove the lag entirely even with 'xcorr'. </div><div><br></div><div>This is my Fieldtrip code (I used 'fir' here but I got the same problem with other filter types):</div><div><div><font color="#0b5394">cfg = [];</font></div><div><font color="#0b5394">cfg.continuous = 'yes';</font></div><div><font color="#0b5394">cfg.bpfilter = 'yes';</font></div><div><font color="#0b5394">cfg.bpfreq = [freq_low, freq_high];</font></div><div><font color="#0b5394">cfg.bpfilttype = 'fir';</font></div><div><font color="#0b5394">cfg.hilbert = 'yes';</font></div><div><font color="#0b5394">cfg.N = N;</font></div><div><font color="#0b5394">signal_HG_fieldtrip = ft_preprocessing(cfg, signal);</font></div></div><div><br></div><div>And this is the MATLAB code:</div><div><div><font color="#0b5394">h = fdesign.bandpass('N,Fst1,Fst2,Ast', N, freq_low/(srate/2), freq_high/(srate/2),60);</font></div><div><font color="#0b5394">BP = design(h);</font></div><div><font color="#0b5394">bp = filter(BP,signal);   </font></div><div><font color="#0b5394">signal_HG_matlab = abs(hilbert(bp));  </font></div><div><font color="#0b5394"><br></font></div><div><font color="#000000">And those codes result in these:</font></div><div><font color="#000000"><img src="cid:ii_itrluj5y1_15781c48ce8d029a" width="454" height="216"><br>​</font><img src="cid:ii_itrlu8v10_15781c4591343c0f" width="454" height="341" style="color: rgb(11, 83, 148);"></div><div><font color="#0b5394">​ </font></div></div><div><font color="#0b5394"><br></font></div><div><font color="#000000">I've been looking at this for weeks now without coming up with a solution. Is anybody who had a similar problem and managed to fix it?</font></div><div><br></div><div>Thank you in advance.</div><div><br></div><div>Best,</div><div>Rachel Lee</div></div>