loop.m

来自「均匀直线天线阵」· M 代码 · 共 11 行

M
11
字号
%This program print pattern for Loop Antenna by giving the radius of your
%Loop and the wavelength you work with
%Have a nice Pattern "Arabia Tech"
lamda=input('enter the value of wave length= ');
a=input('enter your loop radius a= ');
B=(2*pi/lamda);
theta= pi/100:pi/100:2*pi;
E=besselj(1,B*a.*sin(theta));
subplot(2,3,6)
polar(theta,E)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?