<div dir="ltr">dear list,<br><br>I'm analysing CTF MEG data (sampling rate 1250 Hz).<br>I'm epoching my data from -0.5 sec to 2.8 sec relative my marker of interest.<br><br>% define the trial matrix<br>trlFile = zeros(length(markers3), 3);<br>for i_trial = 1:length(markers3)<br>    trlFile(i_trial,1) = markers3(i_trial,2) -625; % 0.5*1250 % SR = 1250,<br>    trlFile(i_trial,2) = markers3(i_trial,2) +3500; % 2.8*1250 % SR = 1250,<br>    trlFile(i_trial,3) = -625;<br>    trlFile(i_trial,4) = markers3(i_trial,1);<br>end<br><br>Once I pre-process the data, I run TF analyses with the wavelet method<br><br>cfg = [ ];<br>cfg.trials = find(data2.trialinfo(:,1) == i_condition);<br>cfg.channel = 'MEG';<br>cfg.method = 'wavelet';<br>cfg.width = 5;<br>cfg.output = 'pow';<br>cfg.foi = 1:1:30;<br>cfg.toi = -0.5:0.05:2.8;<br>TFdata = ft_freqanalysis(cfg, data1);<br><br>In the .freq field I realize that my frequency are not exact integers<br><br>0.907801418439716    2.11820330969267    3.02600472813239    3.93380614657210    5.14420803782506    6.05200945626478    6.95981087470449    7.86761229314421    9.07801418439716    9.98581560283688 ...<br><br>I checked:<br><a href="http://www.fieldtriptoolbox.org/faq/why_am_i_not_getting_exact_integer_frequencies">http://www.fieldtriptoolbox.org/faq/why_am_i_not_getting_exact_integer_frequencies</a><br><br>So, I decide to reduce one sample in my trial definition (so trlFile(i_trial,2) = markers3(i_trial,2) +3500-1; % 2.8*1250 % SR = 1250,)<br><br>But, still I'm not having integers,<br><br>0.909090909090909    2.12121212121212    3.03030303030303    3.93939393939394    5.15151515151515    6.06060606060606    6.96969696969697    7.87878787878788    9.09090909090909    10 ...<br><br>I suspect I can't obtain integer frequencies in my TFR due to my frequency sampling,<br>Is there any recommendation regarding the frequencies used to compute the TFRs?<br>Would that pose some issues for subsequent processing steps?<br><br>thanks<br>Jose<br><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><a href="https://sites.google.com/site/joseluisulloafulgeri/" target="_blank"></a><br><span style="border-collapse:separate;color:rgb(102,102,102);font-family:'Times New Roman';font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;font-size:medium"><span style="font-family:arial;font-size:small"><span style="font-family:tahoma,sans-serif"><span style="border-collapse:separate;color:rgb(102,102,102);font-family:'Times New Roman';font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;font-size:medium"><span style="font-family:arial;font-size:small"></span></span></span></span></span></div></div></div></div></div>
</div>