%% MATLAB 2016a
% Example 1:
% Create a center-fed planar dipole with length 2m and width 0.05m
% and visualize it.
d = dipole('Width',0.05);
show(d)
% Example 2:
% Calculate the impedance of the dipole created in example 1 over the
% frequency span 50MHz - 100MHz.
impedance(d,linspace(50e6,100e6,51))
% Example3:
% Plot the ration pattern of the dipole in example 1 in x-z plane
figure;
pattern(d, 2e9, 0, 0:1:360);
% Example4: Calculate and plot the current distribution
figure;
current (d, 2e9); |