correlogramse.m

来自「谱估计及阵列信号处理算法仿真库」· M 代码 · 共 16 行

M
16
字号
function phi=correlogramse(y,L)%% The correlogram spectral estimator.%% phi=correlogramse(y,L)%%      y -> the data vector%      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. Mosesy=y(:);         % columlize the data matrixphi=periodogramse(y,ones(size(y)),L);  % the correlogram SE is the same as                                        % the unwindowed periodogram SE

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?