📄 btse.m
字号:
function phi=btse(y,w,L)%% The spectral estimator using the Blackman-Tukey method.% The covariance lags are obtained from the standard biased% estimate.%% phi=btse(y,w,L);%% y -> the data vector% w -> the window function (for k=0, ..., M-1)% L -> the number of psd samples% phi <- spectral estimates at L frequencies w=0, 2*pi/L, ..., 2*pi(L-1)/L% Copyright 1996 by R. Moses% make sure the length of the window is less than or equal % to the total data lengthM=length(w);N=length(y);if (M>N) error('The length of the window is longer than the data length.'); returnend% generate the covariance estimater=xcorr(y,'biased'); %vector of biased covariance estimatesr=r(N:N+M-1); % get r(0) to r(M) only rw = r(:).*w(:); % the windowed ACS from 0 to M% generate the spectral estimatephi=2*real(fft(rw,L))-rw(1);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -