资源简介
均匀线阵(ULA)CBF的波束图和方位估计(Direction of Arrival, DOA)空间谱的仿真程序。参考博文:https://blog.csdn.net/weixin_43713224/article/details/87181699
代码片段和文件信息
clc;close all;clear;
mode = 1; % mode1显示声压谱,mode2显示能量谱
d=1; f=300; nmd=1500/f; N=10;
sita=0:0.001:2*pi;
R=abs( sin(N*pi*d.*sin(sita)./nmd)./N./sin(pi*d.*sin(sita)./nmd) );
% set(gcf‘Position‘[100300800300] ‘color‘‘w‘)
figure(1)
if (mode==1)
polar(sitaR)
title( { ‘Figure 1‘ [‘d=‘ num2str(d) ‘ λ=‘num2str(nmd) ‘ N=‘ num2str(N) ] }‘FontSize‘9 )
end
if (mode==2)
shuchu = 20*log10(R/10^(-6))/max(20*log10(R/10^(-6)));
% polar(sita20*log10(R/10^(-6))) %能量形式
polar(sitashuchu) %能量形式
title( { ‘Figure 1‘ [‘d=‘ num2str(d) ‘ λ=‘num2str(nmd) ‘ N=‘ num2str(N) ] }‘FontSize‘9 )
end
d=2; f=300; nmd=1500/f; N=10;
sita=0:0.001:2*pi;
R=abs( sin(N*pi*d.*sin(sita)./nmd)./N./sin(pi*d.*sin(sita)./nmd) );
figure(2)
if (mode==1)
polar(sitaR)
title( { ‘Figure 2‘ [‘d=‘ num2str(d) ‘ λ=‘num2str(nmd) ‘ N=‘ num2str(N) ] }‘FontSize‘9 )
end
if (mode==2)
shuchu = 20*log10(R/10^(-6))/max(20*log10(R/10^(-6)));
% polar(sita20*log10(R/10^(-6))) %能量形式
polar(sitashuchu) %能量形式
title( { ‘Figure 2‘ [‘d=‘ num2str(d) ‘ λ=‘num2str(nmd) ‘ N=‘ num2str(N) ] }‘FontSize‘9 )
end
d=3; f=300; nmd=1500/f; N=10;
sita=0:0.001:2*pi;
R=abs( sin(N*pi*d.*sin(sita)./nmd)./N./sin(pi*d.*sin(sita)./nmd) );
figure(3)
if (mode==1)
polar(sitaR)
title( { ‘Figure 3‘ [‘d=‘ num2str(d) ‘ λ=‘num2str(nmd) ‘ N=‘ num2str(N) ] }‘FontSize‘9 )
end
if (mode==2)
shuchu = 20*log10(R/10^(-6))/max(20*log10(R/10^(-6)));
% polar(sita20*log10(R/10^(-6))) %能量形式
polar(sitashuchu) %能量形式
title( { ‘Figure 3‘ [‘d=‘ num2str(d) ‘ λ=‘num2str(nmd) ‘ N=‘ num2str(N) ] }‘FontSize‘9 )
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 247776 2018-11-02 10:13 Figures_of_Program.docx
文件 1745 2018-11-02 10:08 Question_1.m
文件 659 2018-11-02 10:04 Question_2.m
相关资源
- 基于FPGA的三种信号处理器的集成设计
- 极化敏感阵列信号处理的研究
- 廖桂生的阵列信号处理ppt讲义
- Advances in Direction-of-Arrival Estimation 绝对
- fieldII超声波束形成仿真
- 稳健的自适应波束形成
- 波束形成,自适应波束形成
- 阵列信号处理的理论与应用 第2版
- 自适应波束形成算法的分析与研究
- 阵列信号处理的理论与应用第二版光
- 阵列信号处理经典教材讲义
- 多波束形成原理及其算法
- 波束形成代码和原理解析
- 最优阵列处理技术源代码
- Optimum Array Processing最优阵列处理技术
- 中文版麦克风阵列信号处理.rar
- 麦克风阵列信号处理233482
- 数字波束形成和自适应算法中的各种
- 阵列信号处理的理论和应用.pdf
- 阵列信号处理的理论和应用(pdf+程序
- 麦克风阵列信号处理 电子版
- 小数FIR延时宽带波束形成
- 空间谱估计理论与算法.pdf——王永良
- 麦克风阵列的波束形成
- DON H.JOHNSON.Array Signal Processing-Concepts
- 传感器阵列波束优化设计与应用.pdf—
- 最优阵列处理技术中英文版pdf
- 共四卷包括阵列信号处理程序检测、
- 《Optimum_Array_Processing》,英文版,H
- 自适应波束形成的经典算法大全
评论
共有 条评论