comparison scripts/plot/scatter3.m @ 14001:5f0bb45e615c

doc: Update documentation for functions returning a graphics handle h (Bug #34761) * voronoi.m, image.m, imagesc.m, imshow.m, area.m, bar.m, barh.m, clabel.m, clf.m, compass.m, ezcontour.m, ezcontourf.m, ezmesh.m, ezmeshc.m, ezplot.m, ezplot3.m, ezpolar.m, ezsurf.m, ezsurfc.m, feather.m, fill.m, findall.m, findobj.m, loglog.m, mesh.m, pareto.m, patch.m, pie.m, pie3.m, plot.m, polar.m, quiver.m, quiver3.m, rectangle.m, ribbon.m, rose.m, scatter.m, scatter3.m, semilogx.m, semilogy.m, slice.m, stem.m, surf.m, surface.m, text.m, title.m, trimesh.m, triplot.m, trisurf.m, xlabel.m, ylabel.m, zlabel.m: Update documentation for functions returning a graphics handle h.
author Rik <octave@nomad.inbox5.com>
date Tue, 06 Dec 2011 13:09:17 -0800
parents d6417ee864c9
children 22c50cbad2ce
comparison
equal deleted inserted replaced
14000:15400d5deb1c 14001:5f0bb45e615c
39 ## The marker to use can be changed with the @var{style} argument, that is a 39 ## The marker to use can be changed with the @var{style} argument, that is a
40 ## string defining a marker in the same manner as the @code{plot} command. 40 ## string defining a marker in the same manner as the @code{plot} command.
41 ## If the argument 'filled' is given then the markers as filled. All 41 ## If the argument 'filled' is given then the markers as filled. All
42 ## additional arguments are passed to the underlying patch command. 42 ## additional arguments are passed to the underlying patch command.
43 ## 43 ##
44 ## The optional return value @var{h} provides a handle to the patch object 44 ## The optional return value @var{h} is a graphics handle to the hggroup
45 ## object representing the points.
45 ## 46 ##
46 ## @example 47 ## @example
47 ## @group 48 ## @group
48 ## [x, y, z] = peaks (20); 49 ## [x, y, z] = peaks (20);
49 ## scatter3 (x(:), y(:), z(:), [], z(:)); 50 ## scatter3 (x(:), y(:), z(:), [], z(:));