Main Content

info

Display information about antenna, array, or platform

Description

example

info(object1) displays information about the input antenna or array in a structure as follows:

  • isSolved – Logical value specifying if an antenna or array is solved.

  • isMeshed – Logical value specifying if an antenna or array is meshed.

  • MeshingMode – String specifying the meshing mode.

  • HasSubstrate – Logical value specifying if an antenna or array uses a dielectric substrate.

  • HasLoad – Logical value specifying if an antenna or array has a load.

  • PortFrequency – Scalar or vector of frequencies used for port analysis.

  • FieldFrequency – Scalar or vector of frequencies used for field analysis.

  • MemoryEstimate – Approximate memory requirement to solve the antenna or array.

info(object2) displays information about the input platform or installed antenna in a structure as follows:

  • isSolved – Logical value specifying if the platform or installed antenna is solved.

  • isMeshed – Logical value specifying if the platform or installed antenna is meshed.

  • MeshingMode – String specifying the meshing mode.

  • HasSubstrate – Logical value specifying if the installed antenna uses a dielectric substrate.

  • HasLoad – Logical value specifying if the installed antenna has a load.

  • PortFrequency – Scalar or vector of frequencies used for port analysis.

  • FieldFrequency – Scalar or vector of frequencies used for field analysis.

info(wirestack) displays information about the input wire stack antenna in a structure as follows:

  • isSolved – Logical value specifying if the wire stack antenna is solved.

  • isMeshed – Logical value specifying if the wire stack antenna is meshed.

  • MeshingMode – String specifying the meshing mode.

  • Frequency – Scalar or vector of frequencies used for analysis.

  • MemoryEstimate – Approximate memory requirement for solving the wire stack antenna.

Examples

collapse all

Create a dipole antenna and calculate the impedance at 70 MHz.

d = dipole;
Z = impedance(d,70e6)
Z = 72.9851 - 0.4727i

Display all the information about the dipole antenna.

info(d)
ans = struct with fields:
          IsSolved: "true"
          IsMeshed: "true"
       MeshingMode: "auto"
      HasSubstrate: "false"
           HasLoad: "false"
     PortFrequency: 70000000
    FieldFrequency: []
    MemoryEstimate: "740 MB"

Input Arguments

collapse all

Antenna element or array, specified as either antenna or array object.

Example: dipole

Example: linearArray

Example: customAntenna

Platform or installed antenna, specified as either a platform object or installedAntenna object.

Example: platform

Wire stack antenna, specified as a wireStack object.

Example: wireStack(dipole)

Version History

Introduced in R2017b

See Also

Functions