music.m
来自「谱估计及阵列信号处理算法仿真库」· M 代码 · 共 46 行
M
46 行
function w=music(y,n,m)%% The Root MUSIC method for frequency estimation.%% w=music(y,n,m);%% y -> the data vector% n -> the model order% m -> the order of the covariance matrix in (4.5.14)% w <- the frequency estimates%% Copyright 1996 by R. Mosesy=y(:);N=length(y); % data length% compute the sample covariance matrixR=zeros(m,m);for i = m : N, R=R+y(i:-1:i-m+1)*y(i:-1:i-m+1)'/N;end% to use the forward-backward approach, uncomment the next line% R=(R+fliplr(eye(m))*R.'*fliplr(eye(m)))/2;% get the eigendecomposition of R; use svd because it sorts eigenvalues[U,D,V]=svd(R);G=U(:,n+1:m);% find the coefficients of the polynomial in (4.5.16)if (m>n+1) a=conv(sum(G').',flipud(sum(G.').'));else a=conv(conj(G),flipud(G)); end% find the n roots of the a polynomial that are nearest and inside the unit circle,ra=roots([a]);rb=ra(abs(ra)<1);% pick the n roots that are closest to the unit circle[dumm,I]=sort(abs(abs(rb)-1));w=angle(rb(I(1:n)));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?