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 ;
原文地址:https://www.cnblogs.com/lijia-xiansheng/p/9389765.html
时间: 2024-10-21 05:00:09