メインコンテンツ

viewLayout

Draws the layout of the receiver

Since R2025a

    Description

    Draws the layout of the receiver for the current configuration.

    viewLayout(receiver) draws the layout of the receiver.

    example

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

    Examples

    collapse all

    Draw the phased.Receiver in the Budget configuration setup for three channels set by the PhaseOffset property.

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

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

    Input Arguments

    collapse all

    Receiver, specified as a phased.Receiver System object.

    Axes of parent plot, specified as an axes handle.

    Example: Parent=hax

    Version History

    Introduced in R2025a

    See Also