资源简介
本程序是基于MATLAB平台的,仿真MUSIC算法,进行AOA估计
代码片段和文件信息
% Performance Analysis of NUSIC DOA Estimation Algorithms
d=0.5;
M=5;
%N=11;
D=3;
sig2=0.1;
SNR=20;
th1=-5*pi/180;
th2=10*pi/180;
th3=25*pi/180;
a1=[1];
a2=[1];
a3=[1];
for i=1:M-1
a1=[a1 exp(-1j*i*pi*sin(th1))];
a2=[a2 exp(-1j*i*pi*sin(th2))];
a3=[a3 exp(-1j*i*pi*sin(th3))];
end
A=[a1.‘ a2.‘ a3.‘];
%b1=[1];
%b2=[1];
%b3=[1];
%for ii=1:((N-1)/2-1)
% b1=[b1 exp(-1j*ii*pi*sin(th1))];
% b2=[b2 exp(-1j*ii*pi*sin(th2))];
% b3=[b3 exp(-1j*ii*pi*sin(th3))];
%end
%B=[b1.‘ b2.‘ b3.‘];
K=100; %the length of time samples
N=10;
s=sign(randn(3K));
s1=sign(randn(3N));
Rss=s*s‘/K;
n=sqrt(sig2)*randn(5K);
Rnn=(n*n‘)/K; % calculate the noise correlation matrix (which is no longer diagonal)
Rns=(n*s‘)/K; % calculate the noise/signal correlation matrix
Rsn=(s*n‘)/K; % calculate the signal/noise correlation matrix
Rxx=A*Rss*A‘+A*Rsn+Rns*A‘+Rnn; % combine all to get the array correlation matrix
Rss1=s1*s1‘/N;
n1=sqrt(sig2)*randn(5N);
Rnn1=(n1*n1‘)/N;
Rns1=(n1*s1‘)/N;
Rsn1=(s1*n1‘)/N;
Ryy=A*Rss1*A‘+A*Rsn1+Rns1*A‘+Rnn1;
[EDia]=eig(Rxx);
[YIndex]=sort(diag(Dia)); % sorts the eigenvalues from least to greatest
VN=E(:Index(1:M-D)); % calculate the noise subspace matrix of eigenvectors
% using the sorting done in the previous line
[EDia1]=eig(Ryy);
[Y1Index]=sort(diag(Dia1));
VN1=E(:Index(1:M-D))
for k=1:180;
th(k)=-pi/6+pi*k/(3*180);
clear a
a=[1];
for jj=1:M-1
a = [a exp(-1j*jj*pi*sin(th(k)))];
end
a=a.‘;
P1(k)=1/abs(a‘*VN*VN‘*a);
end
for k=1:180;
th(k)=-pi/6+pi*k/(3*180);
clear a
a=[1];
for jj=1:M-1
a = [a exp(-1j*jj*pi*sin(th(k)))];
end
a=a.‘;
P2(k)=1/abs(a‘*VN1*VN1‘*a);
end
figure;
plot(th*180/pi10*log10(P1/max(P1))‘-b‘)
grid on
hold on
plot(th*180/pi10*log10(P2/max(P2))‘-r‘)
grid on
legend(‘K=100‘‘K=10‘);
xlabel(‘AOA Degrees‘)
ylabel(‘|P(\theta)|‘)
axis([-30 40 -30 10])
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2103 2018-03-31 15:08 music程序\MUSIC.m
目录 0 2018-05-13 21:35 music程序
----------- --------- ---------- ----- ----
2103 2
- 上一篇:情感语音识别代码matlab
- 下一篇:基于MATLAB 的三项桥式全控整流电路仿真
相关资源
- Pattern Recognition and Machine Learning(高清
- MATLAB 编程 第二版 Stephen J. Chapman 著
- 均值滤波和FFT频谱分析Matlab代码
- 《MATLAB扩展编程》代码
- HDB3码、AMI码的MATLAB实现
- 3点GPS定位MATLAB仿真
- MATLAB数字信号处理85个实用案例精讲入
- matlab从入门到精通pdf94795
- 欧拉放大论文及matlab代码
- 跳一跳辅助_matlab版本
- 全面详解LTE MATLAB建模、仿真与实现
- MIMO-OFDM无线通信技术及MATLAB实现_孙锴
- MATLAB Programming for Engineers 4th - Chapman
- matlab 各种谱分析对比
- 分数阶chen混沌matlab程序
- 基于粒子群算法的非合作博弈的matl
- MATLAB车流仿真 包括跟驰、延误
- matlab空间桁架计算程序
- 基于MATLAB的图像特征点匹配和筛选
- DMA-TVP-FAVAR
- GPS信号的码捕获matlab代码.7z
- 一维光子晶体MATLAB仿真代码吸收率折
- newmark法源程序
- 传统关联成像、计算鬼成像matlab
- pri传统分选算法
- 摆动滚子推杆盘形凸轮设计
- 医学图像重建作业matlab源码
- Matlab实现混沌系统的控制
- 检测疲劳驾驶
- Matlab锁相环仿真-Phase Locked Loop.rar
评论
共有 条评论