• 大小: 831B
    文件类型: .m
    金币: 2
    下载: 1 次
    发布日期: 2021-05-16
  • 语言: Matlab
  • 标签: MATLAB  

资源简介

capon谱估计 MATLAB 程序 通过验证 可以得到功率谱估计的图 比较准确

资源截图

代码片段和文件信息

function S=capon(xMfN)
%Capon spectrum estimation 
% x :: the input data array
% M :: the order of the covariance toeplitz matrix
% fN:: the number of sampling in the fequency domain [0 2*pi)
Lx=length(x);
corrx=xcorr(x‘biased‘);
corrx=corrx(Lx:Lx+M-1);
corrxtp=toeplitz(corrx);
clear corrx;
corrxtpinv=inv(corrxtp);
clear corrxtp;
S=zeros(fN1);
FR=fft(corrxtpinvfN1);
%temp=corrxtpinv*corrxtpin

评论

共有 条评论