Main Content

show

Display antenna, array structures, shapes, or platform

Description

example

show(object) displays the structure of an antenna or array.

example

show(shape) displays shape as filled region using patches.

Examples

collapse all

This example shows how to create a vivaldi antenna and display the antenna structure.

h = vivaldi
h = 
  vivaldi with properties:

             TaperLength: 0.2430
           ApertureWidth: 0.1050
             OpeningRate: 25
           SlotLineWidth: 5.0000e-04
          CavityDiameter: 0.0240
    CavityToTaperSpacing: 0.0230
       GroundPlaneLength: 0.3000
        GroundPlaneWidth: 0.1250
              FeedOffset: -0.1045
               Conductor: [1x1 metal]
                    Tilt: 0
                TiltAxis: [1 0 0]
                    Load: [1x1 lumpedElement]

show(h)

Create a circular shape without material properties and visualize the filled regions.

c1  = antenna.Circle
c1 = 
  Circle with properties:

         Name: 'mycircle'
       Center: [0 0]
       Radius: 1
    NumPoints: 30

show(c1)

Create a circular shape with material properties and visualize the filled regions.

c2 = shape.Circle
c2 = 
  Circle with properties:

            Name: 'mycircle'
          Center: [0 0]
          Radius: 1
       NumPoints: 30
           Metal: 'PEC'
           Color: 'y'
    Transparency: 1
       EdgeColor: 'k'

show(c2)

Input Arguments

collapse all

Antenna or array from the catalog, custom antenna or array created using 2-D and 3-D objects from Custom 2-D and 3-D Antenna catalog, installedAntenna or large platform, pcbStack antenna or array, or an AIAntenna specified as an object.

Example: dipole

Example: conformalArray

Example: customAntenna

Example: installedAntenna

Example: pcbStack

Example: AIAntenna

2-D and 3-D geometric shapes created using shape objects in Custom 2-D and 3-D Antenna catalog.

Example: antenna.Rectangle

Example: shape.Box

Version History

Introduced in R2015a