MATLAB Function Reference | ![]() ![]() |
Syntax
xlabel('string
') xlabel(fname) xlabel(...,'PropertyName
',PropertyValue,...) h = xlabel(...) ylabel(...) h = ylabel(...) zlabel(...) h = zlabel(...)
Description
Each axes graphics object can have one label for the x-, y-, and z-axis. The label appears beneath its respective axis in a two-dimensional plot and to the side or beneath the axis in a three-dimensional plot.
xlabel('
labels the x-axis of the current axes.string
')
xlabel(fname)
evaluates the function fname
, which must return a string, then displays the string beside the x-axis.
xlabel(...,'
specifies property name and property value pairs for the text graphics object created by PropertName
',PropertyValue,...)
xlabel
.
h = xlabel(...), h = ylabel(...), and h = zlabel(...)
return the handle to the text object used as the label.
ylabel(...) and zlabel(...)
label the y-axis and z-axis, respectively, of the current axes.
Remarks
Re-issuing an xlabel
, ylabel
, or zlabel
command causes the new label to replace the old label.
For three-dimensional graphics, MATLAB puts the label in the front or side, so that it is never hidden by the plot.
See Also
Annotating Plots for related functions
Adding Axis Labels to Graphs for more information about labeling axes
![]() | workspace | xlim, ylim, zlim | ![]() |