⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 correlogramse.m

📁 现代信号谱估计算法的matlab代码 调用函数代码
💻 M
字号:
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. Moses

y=y(:);         % columlize the data matrix
phi=periodogramse(y,ones(size(y)),L);  % the correlogram SE is the same as 
                                       % the unwindowed periodogram SE

⌨️ 快捷键说明

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