diff scripts/plot/feather.m @ 17161:52931d71400f

doc: Document that first argument can be an axes handle for several plot functions. * scripts/plot/feather.m, scripts/plot/hggroup.m, scripts/plot/loglogerr.m, scripts/plot/quiver.m, scripts/plot/quiver3.m, scripts/plot/semilogxerr.m, scripts/plot/semilogyerr.m: Document that first argument can be an axes handle for several plot functions.
author Rik <rik@octave.org>
date Fri, 02 Aug 2013 17:37:34 -0700
parents 26589abbc78d
children df4c4b7708a4
line wrap: on
line diff
--- a/scripts/plot/feather.m
+++ b/scripts/plot/feather.m
@@ -20,7 +20,7 @@
 ## @deftypefn  {Function File} {} feather (@var{u}, @var{v})
 ## @deftypefnx {Function File} {} feather (@var{z})
 ## @deftypefnx {Function File} {} feather (@dots{}, @var{style})
-## @deftypefnx {Function File} {} feather (@var{h}, @dots{})
+## @deftypefnx {Function File} {} feather (@var{hax}, @dots{})
 ## @deftypefnx {Function File} {@var{h} =} feather (@dots{})
 ##
 ## Plot the @code{(@var{u}, @var{v})} components of a vector field emanating
@@ -32,6 +32,9 @@
 ## The style to use for the plot can be defined with a line style @var{style}
 ## of the same format as the @code{plot} command.
 ##
+## If the first argument @var{hax} is an axes handle, then plot into this axis,
+## rather than the current axes returned by @code{gca}.
+##
 ## The optional return value @var{h} is a vector of graphics handles to the
 ## line objects representing the drawn vectors.
 ##