impedance

Input impedance of antenna; scan impedance of array

Description

example

impedance(antenna,frequency) calculates the input impedance of an antenna object and plots the resistance and reactance over a specified frequency.

example

z = impedance(antenna,frequency) returns the impedance of the antenna object, over a specified frequency.

impedance(array,frequency,elementnumber) calculates and plots the scan impedance of a specified antenna element in an array.

z = impedance(array,frequency,elementnumber) returns the scan impedance of a specified antenna element in an array.

Examples

collapse all

Calculate and plot the impedance of a planar dipole antenna over a frequency range of 50MHz - 100MHz.

h = dipole;
impedance (h,50e6:1e6:100e6);

Calculate scan impedance of default linear array over a frequency range of 50MHz to 100MHz.

h = linearArray;
z = impedance(h,50e6:1e6:100e6)
z = 51×2 complex
102 ×

   0.2892 - 1.7385i   0.2892 - 1.7385i
   0.3005 - 1.6573i   0.3005 - 1.6573i
   0.3119 - 1.5778i   0.3119 - 1.5778i
   0.3237 - 1.4999i   0.3237 - 1.4999i
   0.3357 - 1.4233i   0.3357 - 1.4233i
   0.3479 - 1.3481i   0.3479 - 1.3481i
   0.3605 - 1.2740i   0.3605 - 1.2740i
   0.3734 - 1.2009i   0.3734 - 1.2009i
   0.3866 - 1.1287i   0.3866 - 1.1287i
   0.4002 - 1.0573i   0.4002 - 1.0573i
      ⋮

Input Arguments

collapse all

Antenna object, specified as a scalar handle.

Array object, specified as a scalar handle.

Frequency range to calculate impedance, specified as a scalar in hertz or a vector with each element unit in Hz.

Example: 50e6:1e6:100e6

Data Types: double

Antenna element number in array, specified as a scalar.

Example: 1

Data Types: double

Output Arguments

collapse all

Input impedance of antenna or scan impedance of array, returned as a complex number in ohms. The real part of the complex number indicates the resistance. The imaginary part of the complex number indicates the reactance.

Note

Antenna Toolbox™ caches the impedance values while running for the first time so that the subsequent runs are faster.

See Also

Introduced in R2015a