comparison scripts/plot/scatter3.m @ 10793:be55736a0783

Grammarcheck the documentation from m-files.
author Rik <octave@nomad.inbox5.com>
date Sun, 18 Jul 2010 20:35:16 -0700
parents 10b9a71a81f1
children a0dfd7e8e3e2
comparison
equal deleted inserted replaced
10792:91342260063e 10793:be55736a0783
15 ## You should have received a copy of the GNU General Public License 15 ## You should have received a copy of the GNU General Public License
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} {} scatter3 (@var{x}, @var{y}, @var{z}, @var{s}, @var{c}) 20 ## @deftypefn {Function File} {} scatter3 (@var{x}, @var{y}, @var{z}, @var{s}, @var{c})
21 ## @deftypefnx {Function File} {} scatter3 (@dots{}, 'filled') 21 ## @deftypefnx {Function File} {} scatter3 (@dots{}, 'filled')
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 plotted 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}, @var{y} and @var{z}. The size 28 ## defined by the points in the vectors @var{x}, @var{y} and @var{z}. The size
29 ## of the markers used is determined by @var{s}, which can be a scalar or 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}, @var{y} and @var{z}. If @var{s} is 30 ## a vector of the same length of @var{x}, @var{y} and @var{z}. If @var{s} is
31 ## not 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 ##