Main Content

show

Display antenna, array structures, shapes, or platform

Description

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

example

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

example

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: [1×1 metal]
                    Tilt: 0
                TiltAxis: [1 0 0]
                    Load: [1×1 lumpedElement]

show(h)

Figure contains an axes object. The axes object with title vivaldi antenna element, xlabel x (mm), ylabel y (mm) contains 3 objects of type patch, surface. These objects represent PEC, feed.

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)

Figure contains an axes object. The axes object with xlabel x (m), ylabel y (m) contains 2 objects of type patch. These objects represent PEC, mycircle.

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)

Figure contains an axes object. The axes object with xlabel x (m), ylabel y (m) contains 2 objects of type patch.

Input Arguments

collapse all

Antenna or array to visualize, specified as one of the following:

Example: d = dipole; show(d)

Example: a = design(patchMicrostrip,1e9,ForAI=true); show(a)

Shape to visualize, specified as one of the following objects:

Example: shape = antenna.Rectangle; show(shape)

Example: box = shape.Box; show(box)

Version History

Introduced in R2015a

See Also

Functions

Objects