alim
Set or query axes alpha limits
Syntax
alpha_limits = alim
alim([amin amax])
alim_mode = alim('mode')
alim('alim_mode')
alim(ax,...)
Description
alpha_limits = alim
returns
the alpha limits (ALim
property) of the current axes.
alim([amin amax])
sets the
alpha limits to the specified values. amin
is the
value of the data mapped to the first alpha value in the alphamap,
and amax
is the value of the data mapped to the
last alpha value in the alphamap. Data values in between are linearly
interpolated across the alphamap, while data values outside are clamped
to either the first or last alphamap value, whichever is closest.
alim_mode = alim('mode')
returns the alpha limits mode
(ALimMode
property) of the
current axes.
alim('alim_mode')
sets the
alpha limits mode on the current axes. alim_mode
can
be
auto
— MATLAB® automatically sets the alpha limits based on the alpha data of the objects in the axes.manual
— MATLAB does not change the alpha limits.
alim(ax,...)
operates on the specified
Axes
object or GeographicAxes
object.
Examples
Version History
Introduced before R2006a