comparison scripts/plot/ishghandle.m @ 16814:64e7bb01fce2

doc: Improve documentation for 2-D plot functions * doc/interpreter/plot.txi: Rewrite documentation around get/set. * libinterp/interpfcn/graphics.cc(Fget, Fset): Add seealso links. Add additional calling forms for get(). * scripts/plot/bar.m, scripts/plot/barh.m, scripts/plot/comet.m, scripts/plot/comet3.m, scripts/plot/contour.m, scripts/plot/contour3.m, scripts/plot/contourc.m, scripts/plot/contourf.m, scripts/plot/errorbar.m, scripts/plot/gca.m, scripts/plot/gcf.m, scripts/plot/gco.m, scripts/plot/ishghandle.m, scripts/plot/loglogerr.m, scripts/plot/pareto.m, scripts/plot/pcolor.m, scripts/plot/pie.m, scripts/plot/pie3.m, scripts/plot/plotmatrix.m, scripts/plot/plotyy.m, scripts/plot/polar.m, scripts/plot/quiver.m, scripts/plot/quiver3.m, scripts/plot/rose.m, scripts/plot/scatter.m, scripts/plot/semilogxerr.m, scripts/plot/semilogyerr.m, scripts/plot/sombrero.m, scripts/plot/stairs.m, scripts/plot/stem.m, scripts/plot/stem3.m: Improve docstrings.
author Rik <rik@octave.org>
date Sat, 22 Jun 2013 17:40:52 -0700
parents f3d52523cde1
children eaab03308c0b
comparison
equal deleted inserted replaced
16813:81e041f5633a 16814:64e7bb01fce2
16 ## along with Octave; see the file COPYING. If not, see 16 ## along with Octave; see the file COPYING. If not, see
17 ## <http://www.gnu.org/licenses/>. 17 ## <http://www.gnu.org/licenses/>.
18 18
19 ## -*- texinfo -*- 19 ## -*- texinfo -*-
20 ## @deftypefn {Function File} {} ishghandle (@var{h}) 20 ## @deftypefn {Function File} {} ishghandle (@var{h})
21 ## Return true if @var{h} is a graphics handle and false otherwise. 21 ## Return true if @var{h} is a graphics handle and false otherwise. This
22 ## function is equivalent to @code{ishandle} and is provided for compatibility
23 ## with @sc{matlab}.
24 ## @seealso{ishandle}
22 ## @end deftypefn 25 ## @end deftypefn
23 26
24 function retval = ishghandle (h) 27 function retval = ishghandle (h)
25 ## This function is just included for compatibility as Octave has 28 ## This function is just included for compatibility as Octave has
26 ## no simulink equivalent. 29 ## no simulink equivalent.