You are on page 1of 1

-:

0300090 -:
-:

theta=0:0.01:pi;
%L=y/2
E=(i)*exp(-i)*(cos(pi/2*cos(theta))-cos(pi/2))./sin(theta);
subplot(2,2,2);polar(theta,E)
title('L=y/2 The HPBW =')
%________________________
%L=y/20
E=(i)*exp(-i)*(cos(pi/20*cos(theta))-cos(pi/20))./sin(theta);
subplot(2,2,4);;polar(theta,E)
title('L=y/20 The HPBW =')
%______________________
%L=y
E=(i)*exp(-i)*(cos(pi*cos(theta))-cos(pi))./sin(theta);
subplot(2,2, 3); polar(theta,E)
title('L=y The HPBW =')
%______________________
%L=3*y/2
E=(i)*exp(-i)*(cos(pi*3/2*cos(theta))-cos(pi*3/2))./sin(theta);
subplot(2,2,1 ); polar(theta,E)
title('L=3*y/2 The HPBW =')

You might also like