Mercurial > hg > octave-nkf
comparison scripts/plot/scatter.m @ 12124:cd82f5933c73
scatter: don't recognize 'filled' as a color
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Sat, 22 Jan 2011 03:18:31 -0500 |
parents | c792872f8942 |
children | 7ab497513c1a |
comparison
equal
deleted
inserted
replaced
12123:9ea6f69259d7 | 12124:cd82f5933c73 |
---|---|
19 ## -*- texinfo -*- | 19 ## -*- texinfo -*- |
20 ## @deftypefn {Function File} {} scatter (@var{x}, @var{y}) | 20 ## @deftypefn {Function File} {} scatter (@var{x}, @var{y}) |
21 ## @deftypefnx {Function File} {} scatter (@var{x}, @var{y}, @var{s}) | 21 ## @deftypefnx {Function File} {} scatter (@var{x}, @var{y}, @var{s}) |
22 ## @deftypefnx {Function File} {} scatter (@var{x}, @var{y}, @var{c}) | 22 ## @deftypefnx {Function File} {} scatter (@var{x}, @var{y}, @var{c}) |
23 ## @deftypefnx {Function File} {} scatter (@var{x}, @var{y}, @var{s}, @var{c}) | 23 ## @deftypefnx {Function File} {} scatter (@var{x}, @var{y}, @var{s}, @var{c}) |
24 ## @deftypefnx {Function File} {} scatter (@var{x}, @var{y}, @var{s}, @var{c}, 'filled') | |
25 ## @deftypefnx {Function File} {} scatter (@var{x}, @var{y}, @var{s}, @var{c}, @var{style}) | 24 ## @deftypefnx {Function File} {} scatter (@var{x}, @var{y}, @var{s}, @var{c}, @var{style}) |
26 ## @deftypefnx {Function File} {} scatter (@var{x}, @var{y}, @var{s}, @var{c}, @var{prop}, @var{val}) | 25 ## @deftypefnx {Function File} {} scatter (@var{x}, @var{y}, @var{s}, @var{c}, @var{prop}, @var{val}) |
26 ## @deftypefnx {Function File} {} scatter (@dots{}, "filled") | |
27 ## @deftypefnx {Function File} {} scatter (@var{h}, @dots{}) | 27 ## @deftypefnx {Function File} {} scatter (@var{h}, @dots{}) |
28 ## @deftypefnx {Function File} {@var{h} =} scatter (@dots{}) | 28 ## @deftypefnx {Function File} {@var{h} =} scatter (@dots{}) |
29 ## | 29 ## |
30 ## Plot a scatter plot of the data. A marker is plotted at each point | 30 ## Plot a scatter plot of the data. A marker is plotted at each point |
31 ## defined by the points in the vectors @var{x} and @var{y}. The size of | 31 ## defined by the points in the vectors @var{x} and @var{y}. The size of |
39 ## a scaled index into the current colormap; or a @var{n}-by-3 matrix defining | 39 ## a scaled index into the current colormap; or a @var{n}-by-3 matrix defining |
40 ## the colors of each of the markers individually. | 40 ## the colors of each of the markers individually. |
41 ## | 41 ## |
42 ## The marker to use can be changed with the @var{style} argument, that is a | 42 ## The marker to use can be changed with the @var{style} argument, that is a |
43 ## string defining a marker in the same manner as the @code{plot} command. | 43 ## string defining a marker in the same manner as the @code{plot} command. |
44 ## If the argument 'filled' is given then the markers as filled. All | 44 ## If the argument @code{"filled"} is given then the markers as filled. All |
45 ## additional arguments are passed to the underlying patch command. | 45 ## additional arguments are passed to the underlying patch command. |
46 ## | 46 ## |
47 ## The optional return value @var{h} provides a handle to the patch object | 47 ## The optional return value @var{h} provides a handle to the patch object |
48 ## | 48 ## |
49 ## @example | 49 ## @example |