annotate scripts/plot/area.m @ 17033:02679492b0c6

Add demo to area.m to demonstrate "ydata" updater. scripts/plot/area.m: Add demo which modifies the "ydata" hggroup property.
author Ben Abbott <bpabbott@mac.com>
date Mon, 22 Jul 2013 03:05:16 +0200
parents 4bbc4b703fe4
children cae21eadc27b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14138
72c96de7a403 maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents: 14001
diff changeset
1 ## Copyright (C) 2007-2012 Michael Goffioul
11523
fd0a3ac60b0e update copyright notices
John W. Eaton <jwe@octave.org>
parents: 10793
diff changeset
2 ## Copyright (C) 2007-2009 David Bateman
7146
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
3 ##
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
4 ## This file is part of Octave.
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
5 ##
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
6 ## Octave is free software; you can redistribute it and/or modify it
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
7 ## under the terms of the GNU General Public License as published by
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
8 ## the Free Software Foundation; either version 3 of the License, or (at
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
9 ## your option) any later version.
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
10 ##
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
11 ## Octave is distributed in the hope that it will be useful, but
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
12 ## WITHOUT ANY WARRANTY; without even the implied warranty of
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
14 ## General Public License for more details.
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
15 ##
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
16 ## You should have received a copy of the GNU General Public License
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
17 ## along with Octave; see the file COPYING. If not, see
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
18 ## <http://www.gnu.org/licenses/>.
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
19
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
20 ## -*- texinfo -*-
15566
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
21 ## @deftypefn {Function File} {} area (@var{y})
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
22 ## @deftypefnx {Function File} {} area (@var{x}, @var{y})
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
23 ## @deftypefnx {Function File} {} area (@dots{}, @var{lvl})
7146
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
24 ## @deftypefnx {Function File} {} area (@dots{}, @var{prop}, @var{val}, @dots{})
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
25 ## @deftypefnx {Function File} {} area (@var{h}, @dots{})
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
26 ## @deftypefnx {Function File} {@var{h} =} area (@dots{})
15566
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
27 ## Area plot of the columns of @var{y}. This shows the
16816
12005245b645 doc: Periodic grammarcheck of documentation.
Rik <rik@octave.org>
parents: 15566
diff changeset
28 ## contributions of each column value to the row sum. It is functionally
12005245b645 doc: Periodic grammarcheck of documentation.
Rik <rik@octave.org>
parents: 15566
diff changeset
29 ## similar to @code{plot (@var{x}, cumsum (@var{y}, 2))}, except that the
12005245b645 doc: Periodic grammarcheck of documentation.
Rik <rik@octave.org>
parents: 15566
diff changeset
30 ## area under the curve is shaded.
7146
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
31 ##
15566
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
32 ## If the @var{x} argument is omitted it defaults to
9040
dbd0c77e575e Cleanup documentation file plot.texi
Rik <rdrider0-list@yahoo.com>
parents: 8920
diff changeset
33 ## @code{1 : rows (@var{y})}. A value @var{lvl} can be defined that determines
15566
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
34 ## where the base level of the shading under the curve should be defined. The
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
35 ## default level is 0.
7146
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
36 ##
15566
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
37 ## Additional arguments to the @code{area} function are passed directly to
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
38 ## @code{patch}.
14001
5f0bb45e615c doc: Update documentation for functions returning a graphics handle h (Bug #34761)
Rik <octave@nomad.inbox5.com>
parents: 11587
diff changeset
39 ##
5f0bb45e615c doc: Update documentation for functions returning a graphics handle h (Bug #34761)
Rik <octave@nomad.inbox5.com>
parents: 11587
diff changeset
40 ## The optional return value @var{h} is a graphics handle to the hggroup
15566
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
41 ## object representing the area patch objects. The "BaseValue" property
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
42 ## of the hggroup can be used to adjust the level where shading begins.
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
43 ##
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
44 ## Example: Verify identity sin^2 + cos^2 = 1
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
45 ##
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
46 ## @example
16816
12005245b645 doc: Periodic grammarcheck of documentation.
Rik <rik@octave.org>
parents: 15566
diff changeset
47 ## @group
15566
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
48 ## t = linspace (0, 2*pi, 100)';
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
49 ## y = [sin(t).^2, cos(t).^2)];
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
50 ## area (t, y);
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
51 ## legend ('sin^2', 'cos^2', 'location', 'NorthEastOutside');
16816
12005245b645 doc: Periodic grammarcheck of documentation.
Rik <rik@octave.org>
parents: 15566
diff changeset
52 ## @end group
15566
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
53 ## @end example
7146
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
54 ## @seealso{plot, patch}
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
55 ## @end deftypefn
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
56
7147
fdb3840cec66 [project @ 2007-11-09 17:56:34 by jwe]
jwe
parents: 7146
diff changeset
57 function h = area (varargin)
7146
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
58
7215
dd88d61d443f [project @ 2007-11-29 16:44:45 by jwe]
jwe
parents: 7147
diff changeset
59 [ax, varargin, nargin] = __plt_get_axis_arg__ ("area", varargin{:});
dd88d61d443f [project @ 2007-11-29 16:44:45 by jwe]
jwe
parents: 7147
diff changeset
60
15566
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
61 if (nargin == 0)
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
62 print_usage ();
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
63 endif
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
64
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
65 idx = 1;
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
66 x = y = [];
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
67 bv = 0;
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
68 args = {};
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
69 ## Check for (X) or (X,Y) arguments and possible base value.
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
70 if (nargin >= idx && ismatrix (varargin{idx}))
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
71 y = varargin{idx};
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
72 idx++;
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
73 if (nargin >= idx)
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
74 if (isscalar (varargin{idx}))
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
75 bv = varargin{idx};
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
76 idx++;
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
77 elseif (ismatrix (varargin{idx}))
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
78 x = y;
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
79 y = varargin{idx};
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
80 idx++;
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
81 if (nargin >= idx && isscalar (varargin{idx}))
7146
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
82 bv = varargin{idx};
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
83 idx++;
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
84 endif
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
85 endif
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
86 endif
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
87 else
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
88 print_usage ();
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
89 endif
15566
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
90 ## Check for additional args.
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
91 if (nargin >= idx)
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
92 args = {varargin{idx:end}};
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
93 endif
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
94 newplot ();
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
95 if (isvector (y))
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
96 y = y(:);
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
97 endif
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
98 if (isempty (x))
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
99 x = repmat ([1:rows(y)]', 1, columns (y));
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
100 elseif (isvector (x))
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
101 x = repmat (x(:), 1, columns (y));
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
102 endif
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
103
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
104 oldax = gca ();
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
105 unwind_protect
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
106 axes (ax);
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
107 tmp = __area__ (ax, x, y, bv, args{:});
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
108 unwind_protect_cleanup
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
109 axes (oldax);
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
110 end_unwind_protect
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
111
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
112 if (nargout > 0)
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
113 h = tmp;
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
114 endif
7146
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
115
c7e5e638a8d0 [project @ 2007-11-09 17:49:44 by jwe]
jwe
parents:
diff changeset
116 endfunction
9896
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
117
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
118 function retval = __area__ (ax, x, y, bv, varargin)
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
119
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
120 y0 = bv * ones (1, rows (y));
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
121 y0 = zeros (1, rows (y));
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
122 retval = [];
14872
c2dbdeaa25df maint: use rows() and columns() to clarify m-files.
Rik <octave@nomad.inbox5.com>
parents: 14868
diff changeset
123 for i = 1: columns (y);
9896
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
124 hg = hggroup ();
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
125 retval = [retval; hg];
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
126 args = __add_datasource__ ("area", hg, {"x", "y"}, varargin{:});
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
127
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
128 x1 = x(:, 1).';
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
129 y1 = y (:, i).';
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
130 addproperty ("xdata", hg, "data", x1);
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
131 addproperty ("ydata", hg, "data", y1);
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
132
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
133 addlistener (hg, "xdata", @update_data);
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
134 addlistener (hg, "ydata", @update_data);
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
135
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
136 if (i == 1)
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
137 h = patch (ax, [x1(1), x1, fliplr(x1)], [bv, y1, bv*ones(1, length(y1))],
10549
95c3e38098bf Untabify .m scripts
Rik <code@nomad.inbox5.com>
parents: 9896
diff changeset
138 __next_line_color__ (), "parent", hg);
9896
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
139 else
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
140 y1 = y0 + y1;
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
141 h = patch (ax, [x1(1), x1, fliplr(x1)], [y0(1), y1, fliplr(y0)],
10549
95c3e38098bf Untabify .m scripts
Rik <code@nomad.inbox5.com>
parents: 9896
diff changeset
142 __next_line_color__ (), "parent", hg);
9896
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
143 endif
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
144
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
145 y0 = y1;
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
146
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
147 addproperty ("basevalue", hg, "data", bv);
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
148 addlistener (hg, "basevalue", @move_baseline);
9896
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
149
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
150 addproperty ("edgecolor", hg, "patchedgecolor", get (h, "edgecolor"));
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
151 addproperty ("linewidth", hg, "patchlinewidth", get (h, "linewidth"));
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
152 addproperty ("linestyle", hg, "patchlinestyle", get (h, "linestyle"));
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
153 addproperty ("facecolor", hg, "patchfacecolor", get (h, "facecolor"));
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
154
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
155 addlistener (hg, "edgecolor", @update_props);
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
156 addlistener (hg, "linewidth", @update_props);
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
157 addlistener (hg, "linestyle", @update_props);
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
158 addlistener (hg, "facecolor", @update_props);
9896
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
159
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
160 addproperty ("areagroup", hg, "data");
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
161 set (retval, "areagroup", retval);
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
162
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
163 if (! isempty (args))
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
164 set (hg, args{:});
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
165 endif
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
166 endfor
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
167
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
168 endfunction
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
169
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
170 function update_props (h, d)
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
171 kids = get (h, "children");
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
172 set (kids, "edgecolor", get (h, "edgecolor"),
15566
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
173 "linewidth", get (h, "linewidth"),
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
174 "linestyle", get (h, "linestyle"),
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
175 "facecolor", get (h, "facecolor"));
9896
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
176 endfunction
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
177
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
178 function move_baseline (h, d)
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
179 persistent recursion = false;
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
180
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
181 ## Don't allow recursion
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
182 if (! recursion)
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
183 unwind_protect
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
184 recursion = true;
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
185 hlist = get (h, "areagroup");
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
186 b0 = get (h, "basevalue");
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
187
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
188 for hh = hlist(:)'
10549
95c3e38098bf Untabify .m scripts
Rik <code@nomad.inbox5.com>
parents: 9896
diff changeset
189 if (hh != h)
95c3e38098bf Untabify .m scripts
Rik <code@nomad.inbox5.com>
parents: 9896
diff changeset
190 b1 = get (hh, "basevalue");
95c3e38098bf Untabify .m scripts
Rik <code@nomad.inbox5.com>
parents: 9896
diff changeset
191 if (b1 != b0)
95c3e38098bf Untabify .m scripts
Rik <code@nomad.inbox5.com>
parents: 9896
diff changeset
192 set (hh, "basevalue", b0);
95c3e38098bf Untabify .m scripts
Rik <code@nomad.inbox5.com>
parents: 9896
diff changeset
193 endif
95c3e38098bf Untabify .m scripts
Rik <code@nomad.inbox5.com>
parents: 9896
diff changeset
194 endif
9896
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
195 endfor
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
196 update_data (h, d);
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
197 unwind_protect_cleanup
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
198 recursion = false;
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
199 end_unwind_protect
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
200 endif
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
201 endfunction
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
202
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
203 function update_data (h, d)
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
204 hlist = get (h, "areagroup");
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
205 bv = get (h, "basevalue");
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
206 for i = 1 : length (hlist)
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
207 hh = hlist(i);
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
208 x1 = get (hh, "xdata")(:);
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
209 y1 = get (hh, "ydata")(:);
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
210
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
211 set (get (hh, "children"), "xdata", [x1(1); x1; flipud(x1)]);
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
212 if (i == 1)
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
213 set (get (hh, "children"), "ydata", [bv; y1; bv*ones(length(y1), 1)]);
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
214 else
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
215 y1 = y0 + y1;
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
216 set (get (hh, "children"), "ydata", [y0(1); y1; flipud(y0)]);
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
217 endif
9896
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
218
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
219 y0 = y1;
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
220 endfor
1aeb39118764 convert some plot functions to subfunctions or make some them private
John W. Eaton <jwe@octave.org>
parents: 9245
diff changeset
221 endfunction
15566
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
222
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
223
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
224 %!demo
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
225 %! # Verify identity sin^2 + cos^2 = 1
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
226 %! clf;
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
227 %! t = linspace (0, 2*pi, 100)';
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
228 %! y = [sin(t).^2, cos(t).^2];
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
229 %! area (t, y);
16917
4bbc4b703fe4 area.m: tight axis limits for demo.
Ben Abbott <bpabbott@mac.com>
parents: 16816
diff changeset
230 %! axis tight
15566
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
231 %! legend ('sin^2', 'cos^2', 'location', 'NorthEastOutside');
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
232
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
233 %!demo
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
234 %! # Show effects of setting BaseValue
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
235 %! clf;
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
236 %! x = [-2:0.1:2]';
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
237 %! y = x.^2 - 1;
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
238 %! subplot (1, 2, 1)
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
239 %! area (x, y);
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
240 %! title ({'Parabola y = x^2 -1';'BaseValue = 0'});
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
241 %! subplot (1, 2, 2)
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
242 %! h = area (x, y);
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
243 %! set (h, 'basevalue', -1);
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
244 %! title ({'Parabola y = x^2 -1';'BaseValue = -1'});
ab1c6e6d1be6 area.m: Add demos and redo docstring.
Rik <rik@octave.org>
parents: 14872
diff changeset
245
17033
02679492b0c6 Add demo to area.m to demonstrate "ydata" updater.
Ben Abbott <bpabbott@mac.com>
parents: 16917
diff changeset
246 %!demo
02679492b0c6 Add demo to area.m to demonstrate "ydata" updater.
Ben Abbott <bpabbott@mac.com>
parents: 16917
diff changeset
247 %! x = 0:10;
02679492b0c6 Add demo to area.m to demonstrate "ydata" updater.
Ben Abbott <bpabbott@mac.com>
parents: 16917
diff changeset
248 %! y = rand (size (x));
02679492b0c6 Add demo to area.m to demonstrate "ydata" updater.
Ben Abbott <bpabbott@mac.com>
parents: 16917
diff changeset
249 %! h = area (x, y);
02679492b0c6 Add demo to area.m to demonstrate "ydata" updater.
Ben Abbott <bpabbott@mac.com>
parents: 16917
diff changeset
250 %! set (h, 'ydata', sort (get (h, 'ydata')))