Main Content

viewLayout

Draws the layout of the transmitter

Since R2025a

    Description

    Draws the layout of the transmitter for the current configuration.

    viewLayout(transmitter) draws the layout of the transmitter.

    example

    viewLayout(transmitter,Parent=hax) draws the transmitter layout on the hax axes. The default behavior creates a new figure and axes.

    Examples

    collapse all

    Draw the phased.Transmitter System object in the "Budget" configuration for three channels specified by the PhaseOffset property.

    tx = phased.Transmitter(Configuration="Budget", ...
        GainMethod="Cubic polynomial",Gain=10,OIP3=30, ...
        NoiseMethod="Noise temperature", ...
        PhaseOffset=[-5 0 5]);
    viewLayout(tx)

    Figure contains an axes object. The hidden axes object with title Transmitter Layout contains 27 objects of type line, text.

    Input Arguments

    collapse all

    Transmitter, specified as a phased.Transmitter System object.

    Axes of parent plot, specified as an axes handle.

    Example: Parent=hax

    Version History

    Introduced in R2025a

    See Also