Mercurial > hg > octave-lyh
comparison scripts/plot/scatter3.m @ 8069:c64c9581e9bf
fix documentation of scatter3
author | Martin Weiser <weiser2@natur.cuni.cz> |
---|---|
date | Thu, 28 Aug 2008 10:20:43 -0400 |
parents | 689652eb95d1 |
children | eb63fbe60fab |
comparison
equal
deleted
inserted
replaced
8068:e3e3d12364b0 | 8069:c64c9581e9bf |
---|---|
22 ## @deftypefnx {Function File} {} scatter3 (@dots{}, @var{style}) | 22 ## @deftypefnx {Function File} {} scatter3 (@dots{}, @var{style}) |
23 ## @deftypefnx {Function File} {} scatter3 (@dots{}, @var{prop}, @var{val}) | 23 ## @deftypefnx {Function File} {} scatter3 (@dots{}, @var{prop}, @var{val}) |
24 ## @deftypefnx {Function File} {} scatter3 (@var{h}, @dots{}) | 24 ## @deftypefnx {Function File} {} scatter3 (@var{h}, @dots{}) |
25 ## @deftypefnx {Function File} {@var{h} =} scatter3 (@dots{}) | 25 ## @deftypefnx {Function File} {@var{h} =} scatter3 (@dots{}) |
26 ## | 26 ## |
27 ## Plot a scatter plot of the data in 3D. A marker is ploted at each point | 27 ## Plot a scatter plot of the data in 3D. A marker is plotted at each point |
28 ## defined by the points in the vectors @var{x} and @var{y}. The size of | 28 ## defined by the points in the vectors @var{x}, @var{y} and @var{z}. The size |
29 ## the markers used is determined by the @var{s}, which can be a scalar, | 29 ## of the markers used is determined by @var{s}, which can be a scalar or |
30 ## a vector of the same length of @var{x} and @var{y}. If @var{s} is not | 30 ## a vector of the same length of @var{x}, @var{y} and @var{z}. If @var{s} is |
31 ## given or is an empty matrix, then the default value of 8 points is used. | 31 ## not given or is an empty matrix, then the default value of 8 points is used. |
32 ## | 32 ## |
33 ## The color of the markers is determined by @var{c}, which can be a string | 33 ## The color of the markers is determined by @var{c}, which can be a string |
34 ## defining a fixed color, a 3 element vector giving the red, green and blue | 34 ## defining a fixed color, a 3 element vector giving the red, green and blue |
35 ## components of the color, a vector of the same length as @var{x} that gives | 35 ## components of the color, a vector of the same length as @var{x} that gives |
36 ## a scaled index into the current colormap, or a @var{n}-by-3 matrix defining | 36 ## a scaled index into the current colormap, or a @var{n}-by-3 matrix defining |