📄 dengjianjuxianzhen.m
字号:
c=1500;
f=1000;
theter=-pi/2:pi/360:pi/2;
x=sin(theter);
d=1;
N=2;
m=abs(sin(N*pi*d*f/c*x)./(sin(pi*d*f/c*x)*N));
subplot(411), plot(x,m) ,title('d=1 N=2');
d=2;
N=2;
n=abs(sin(N*pi*d*f/c*x)./(sin(pi*d*f/c*x)*N));
subplot(412),plot(x,n),title('d=2 N=2');
d=4;
N=8;
b=abs(sin(N*pi*d*f/c*x)./(sin(pi*d*f/c*x)*N));
subplot(413),plot(x,b),title('d=4 N=8');
v=m.*n.*b
subplot(414),plot(x,v),title('N=32 总指向性');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -