| << winter | Graphics functions | xlim >> |
| xlabel(text) |
| xlabel(ax, text) |
| xlabel(..., propertyName, propertyValue) |
| go = xlabel(...) |
Text to display: character vector, string scalar, string array or cell array.
a scalar graphics object value: parent container, specified as a axes.
a scalar string or row vector character.
a value.
a graphics object: text type.
xlabel('text') labels the x-axis of the current axes.
f = figure();
x = linspace(-1, 1);
y = sin(2*pi*x);
plot(x, y);
xlabel('X axis Label - Unicode ドラゴンボールX(ゼット)')
| Version | Description |
|---|---|
| 1.0.0 | initial version |
Allan CORNET