Create UI axes for plots in apps
creates a UI axes in a new
figure window and returns the ax
= uiaxesUIAxes
object.
MATLAB® calls the uifigure
function to create the
figure.
UIAxes
objects are useful for creating Cartesian plots in apps.
They are very similar to the Cartesian Axes
objects returned by
the axes
function. Thus, you can pass a
UIAxes
object to most functions that accept an
Axes
object. For more information, see Differences Between UIAxes and Axes Objects.
specifies ax
= uiaxes(Name,Value
)UIAxes
property values using one or more
Name,Value
pair arguments.
specifies ax
= uiaxes(parent
,Name,Value
)UIAxes
property values using one or more
Name,Value
arguments.