Section: Handle-Based Graphics
zlabel('label')
or in the alternate form
zlabel 'label'
or simply
zlabel label
Here label
is a string variable. You can also specify properties
for that label using the syntax
zlabel('label',properties...)
z
-axis.
--> t = linspace(0,5*pi); --> x = cos(t); --> y = sin(t); --> z = t; --> plot3(x,y,z,'r-'); --> view(3); --> zlabel('time'); --> quit
which results in the following plot.