メインコンテンツ

show

アンテナ、アレイ、AI ベースのアンテナ、プラットフォーム、または形状の表示

説明

show(object) は、指定されたオブジェクトの幾何学的構造を表示します。指定できるオブジェクトは、アンテナ、アレイ、AI ベースのアンテナ、プラットフォーム、または形状です。

show(object,EnableIndividualColors=false) は、ブール演算の結果として形状が生成されるときに、指定された形状の幾何学的構造を指定された色で表示します。

すべて折りたたむ

この例では、ビバルディ アンテナを作成し、そのアンテナ構造を表示する方法を示します。

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.

材料特性を指定せずに円の形状を作成し、塗りつぶされた領域を可視化します。

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.

材料特性を指定して円の形状を作成し、塗りつぶされた領域を可視化します。

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.

入力引数

すべて折りたたむ

可視化するアンテナ、アレイ、AI ベースのアンテナ、プラットフォーム、または形状。次のいずれかとして指定します。

例: d = dipole; show(d)

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

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

バージョン履歴

R2015a で導入

参考

関数

オブジェクト