<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><div dir="ltr"><div>Dear Fieldtrip community,</div><div><br></div><div>I am trying to resample my EEG data from 512 Hz to 500 Hz. I am performing the resampling after data epoching, artifact rejection, ICA and baseline correction, and before averaging my ERPs across conditions. I think something goes wrong there, because when I compare the 500 Hz data to the 512 Hz data they do not look the same. I past my code below. My first question is: is that ok to perform resampling after baseline correction? If yes, which are the correct parameters in this situation? I am talking in particular of the demean and detrend paramers. <br></div><div><br></div><div>Any help will be much appreciated.</div><div>Best,</div><div>Valeria<br></div><div><br></div><div>cfg                 = [];<br>cfg.channel         = 1:64;<br>cfg.lpfilter        = 'yes';<br>cfg.lpfreq          = 40; % <br>cfg.demean          = 'yes';<br>cfg.detrend         = 'yes'; <br>cfg.baselinewindow  = baselinewindow;  % Baseline window<br><br>data = ft_preprocessing(cfg,data);<br><br>% Resample data at 500 Hz<br>cfg                 = [];<br>cfg.resamplefs      = 500;<br>cfg.demean          = 'no';<br>cfg.detrend         = 'yes'; <br>cfg.baselinewindow  = baselinewindow;  % Baseline window<br>cfg.feedback        = 'text';<br>cfg.trials          = 'all';<br>cfg.sampleindex     = 'no';<br><br>data = ft_resampledata(cfg,data);</div></div>