Main Content

layout

Display array or PCB stack layout

Description

example

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.

Examples

collapse all

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

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

Default PCB stack layout.

p = pcbStack;
layout(p)

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

|