<< ylim | Graphics functions | zlim >> |
zlabel(text) |
zlabel(ax, text) |
zlabel(..., propertyName, propertyValue) |
go = zlabel(...) |
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.
zlabel('text') labels the z-axis of the current axes.
f = figure();
t = 0:pi/50:10*pi;
L = plot3(sin(t), cos(t), t);
axis square
zlabel('Z axis Label - Unicode ドラゴンボールZ(ゼット)')
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET