replot — redraw the current graphics window with new boundaries
replot(rect,[handle])
row vector of size 4.
optional argument. Graphics handle(s) of type Axes to select one or several given Axes. Only available in new graphics mode.
replot
is used to redraw the content of the current
graphics window with new boundaries defined by
rect=[xmin,ymin,xmax,ymax]
. Under old graphics syntax, it
works only with the driver "Rec"
.
Under new graphics mode, this transformation can be applied to specific
axes given by Axes graphics handles via the handle argument. If handle is
not specified, the new boundaries are applied to the current axes of the
current figure. The transformation changes the data_bounds
value of those axes. Note that the axes property tight_limits
must also be set to "on" to strictly select those bounds (see
axes_properties).