<< zlabel | Graphics functions | zoom >> |
lims = zlim() |
zlim([zmin, zmax]) |
zlim('auto') |
zlim('manual') |
m = zlim('mode') |
zlim(ax, ...) |
z-coordinates: vector or matrix.
enable automatic limit selection.
freeze the z-axis limits at their current value.
returns the current z-axis limits mode.
a scalar graphics object value: parent container, specified as a axes.
two-element vector: [zmin, zmax]
'auto' or 'manual'.
zlim get or set the limits of the z-axis for the current plot.
x = linspace(-1, 1);
y = sin(2*pi*x);
plot(x, y);
lim = zlim()
m = zlim('mode')
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET