我有一个信号在某些地方是周期性的,而在其他地方没有,我希望能够找到它周期性的范围(及时)。我无法在这里展示我的原始信号,但我将使用一个示例信号来说明我的问题:
示例信号:
vect=[randn([1,500]) sin(x) 1:500];
x=linspace(0, 20*Pi, 1000)
我想要一些能告诉我信号在 500 到 1500 之间的 x 的周期性信号,基本上。
我尝试使用该xcorr
函数(我使用xcorr(y,'unbiased')
然后找到了零滞后峰值,并找到了在零滞后的某个百分比范围内的其他峰值来定义周期性区域,但我无法弄清楚如何将滞后与x 范围。
编辑:到目前为止我使用的代码
[c, lags] = xcorr(y,'unbiased');
lag_zero=find(lags==0)
[peaks,locs]=findpeaks(c,'MINPEAKHEIGHT',.5*c(lag_zero)); %finding peaks
cindex=find(((c(lag_zero)-(0.5*c(lag_zero)))<c) & (c<(c(lag_zero)+(0.5*c(lag_zero)))));
maxlags=lags(max(cindex));
[c2,lags2]=xcov(y,y,maxlags,'unbiased'); %this is just to narrow the periodic part down
plot(lags2,c2);
period=abs(x(locs(floor((length(locs))/2)))-x(locs(floor(((length(locs))/2)-1))))