Main Content

layout

Display array or PCB stack layout

Description

layout(array) displays the layout of the array object. The circles in the layout corresponds to antenna feed points within the array.

example

layout(pcbstack) displays the layout of the PCB stack object. The circles in the layout corresponds to antenna feed points on the PCB.

example

Examples

collapse all

Create and view a 3x3 rectangular array layout on the X-Y plane.

h = rectangularArray(Size=[3 3]);
layout(h)

Figure contains an axes object. The axes object with title Array Layout, xlabel x (m), ylabel y (m) contains 10 objects of type scatter, text.

Default PCB stack layout.

p = pcbStack;
layout(p)

Figure contains an axes object. The axes object with title PCB Stack Layout, xlabel x (m), ylabel y (m) contains 5 objects of type line, text. One or more of the lines displays its values using only markers These objects represent Board Shape, Layer1, Layer2, Feed.

Input Arguments

collapse all

Array to view the layout, specified as an array object from the catalog or array created using customArrayMesh or customArrayGeometry.

Example: rectangularArray

PCB stack, specified as a pcbStack object.

Example: pcbStack

Version History

Introduced in R2015a

See Also

|