线性阵列DS延时-求和波束形成 远场

 

 1 % 线阵的DS固定波束形成(延时-求和)
 2 %波束模式是方向响应的绝对值。
 3 clear
 4 N=4;
 5 d=0.04;
 6 thta=pi/2;
 7 f=3000;
 8 c=340;
 9 fai=0:0.01:pi;
10 a=sin(N*pi*f*d*(cos(fai)-cos(thta))/c);
11 b=N*sin(pi*f*d*(cos(fai)-cos(thta))/c);
12 result=abs(a./b);
13 result=result*max(result);
14 plot(180*fai/pi,20*log10(result));
15 title('均匀线性阵列的波束模式');
16 ylabel('增益/dB'); xlabel('方位角/度');
17 grid on ;

 

posted @ 2018-07-30 11:42  李恝  阅读(2108)  评论(0编辑  收藏  举报