Mercurial > hg > octave-lyh
annotate scripts/plot/private/__ezplot__.m @ 17394:6dbc866379e2
Replace cellfun() occurrences with faster code where possible.
* scripts/help/doc_cache_create.m: Use built-in "isclass" rather than ischar.
Use addpath and rmpath with multiple inputs rather than cellfun.
* scripts/image/imformats.m: Use isfield with cell string list rather
than cellfun.
* scripts/image/private/__imread__.m: Use ismember to replace cellfun/strcmpi
combo.
* scripts/miscellaneous/what.m: Re-order if/elseif tree.
* scripts/pkg/private/rebuild.m: Replace cellfun with strcat call.
* scripts/plot/axis.m: Use comma-separated lists to replace cellfun.
* scripts/plot/pareto.m: Use cellstr on char array to replace cellfun.
* scripts/plot/private/__gnuplot_print__.m: Use @times, rather than
anonymous function, in cellfun call.
* scripts/plot/private/__line__.m: White space cleanup.
* scripts/plot/private/__patch__.m: Use ismember to replace cellfun/strcmpi
combo. Use in-place '|=' operator for performance.
* scripts/plot/struct2hdl.m: Use ismember to replace cellfun/strcmp combo.
* scripts/polynomial/splinefit.m: Use built-in "isclass" rather than ischar.
* scripts/special-matrix/gallery.m: Remove anonymous functions inside cellfuns.
* scripts/strings/strsplit.m: Correct comment character to '#' from '%'.
* scripts/strings/untabify.m: Use multiple argument form of cellfun to get
rid of anonymous function.
* scripts/testfun/__run_test_suite__.m: Remove anonymous function from within
cellfun.
* scripts/ui/inputdlg.m: Use built-in "isclass" rather than ischar.
author | Rik <rik@octave.org> |
---|---|
date | Fri, 06 Sep 2013 14:08:42 -0700 |
parents | 09543e9c8f40 |
children |
rev | line source |
---|---|
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
11589
diff
changeset
|
1 ## Copyright (C) 2007-2012 David Bateman |
7337 | 2 ## |
3 ## This file is part of Octave. | |
4 ## | |
5 ## Octave is free software; you can redistribute it and/or modify it | |
6 ## under the terms of the GNU General Public License as published by | |
7 ## the Free Software Foundation; either version 3 of the License, or (at | |
8 ## your option) any later version. | |
9 ## | |
10 ## Octave is distributed in the hope that it will be useful, but | |
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 ## General Public License for more details. | |
14 ## | |
15 ## You should have received a copy of the GNU General Public License | |
16 ## along with Octave; see the file COPYING. If not, see | |
17 ## <http://www.gnu.org/licenses/>. | |
18 | |
8812
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8046
diff
changeset
|
19 ## -*- texinfo -*- |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
20 ## @deftypefn {Function File} {[@var{h}, @var{needusage}] =} __ezplot__ (@var{pltfunc}, @var{varargin}) |
8812
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8046
diff
changeset
|
21 ## Undocumented internal function. |
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8046
diff
changeset
|
22 ## @end deftypefn |
7337 | 23 |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
24 ## Overview: This function is the back-end for the 9 ez* plot functions. |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
25 ## As such, most of the function is actually dedicated to sorting |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
26 ## out the inputs and verifying that the particular ez* function |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
27 ## called was called correctly. The actual plotting occurs near |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
28 ## the end in an unwind_protect block. |
7337 | 29 |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
30 function [h, needusage] = __ezplot__ (pltfunc, varargin) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
31 |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
32 ezfunc = ["ez" pltfunc]; |
7337 | 33 |
17054
27b3a675ea6b
__ezplot__.m: Update to use new __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16993
diff
changeset
|
34 [hax, varargin, nargin] = __plt_get_axis_arg__ (ezfunc, varargin{:}); |
7337 | 35 |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
36 ## Define outputs early in case of shorting out of function with return; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
37 h = []; |
7337 | 38 needusage = false; |
39 if (nargin < 1) | |
40 needusage = true; | |
41 return; | |
42 endif | |
43 | |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
44 iscontour = strncmp (pltfunc, "contour", 7); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
45 |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
46 ## Defaults for ezplot |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
47 isplot = true; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
48 isplot3 = false; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
49 ispolar = false; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
50 nargs = 1; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
51 switch (pltfunc) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
52 case "plot" |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
53 ## defaults already set |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
54 |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
55 case "plot3" |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
56 isplot = false; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
57 isplot3 = true; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
58 |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
59 case "polar" |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
60 isplot = false; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
61 ispolar = true; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
62 |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
63 otherwise |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
64 ## contour, mesh, surf plots |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
65 isplot = false; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
66 nargs = 2; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
67 |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
68 endswitch |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
69 |
7337 | 70 parametric = false; |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
71 fun = varargin{1}; |
7337 | 72 if (ischar (fun)) |
8046 | 73 if (exist (fun, "file") || exist (fun, "builtin")) |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
74 fun = inline ([fun "(t)"]); |
8046 | 75 else |
76 fun = vectorize (inline (fun)); | |
77 endif | |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
78 argids = argnames (fun); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
79 if (isplot && length (argids) == 2) |
8046 | 80 nargs = 2; |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
81 elseif (numel (argids) != nargs) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
82 error ("%s: expecting a function of %d arguments", ezfunc, nargs); |
7337 | 83 endif |
84 fstr = formula (fun); | |
8046 | 85 if (isplot) |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
86 xarg = argids{1}; |
8046 | 87 if (nargs == 2) |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
88 yarg = argids{2}; |
8046 | 89 else |
10549 | 90 yarg = ""; |
8046 | 91 endif |
92 elseif (isplot3) | |
7337 | 93 xarg = "x"; |
94 yarg = "y"; | |
95 elseif (ispolar) | |
96 xarg = ""; | |
97 yarg = ""; | |
98 else | |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
99 xarg = argids{1}; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
100 yarg = argids{2}; |
7337 | 101 endif |
102 elseif (strcmp (typeinfo (fun), "inline function")) | |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
103 argids = argnames (fun); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
104 if (isplot && length (argids) == 2) |
8046 | 105 nargs = 2; |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
106 elseif (numel (argids) != nargs) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
107 error ("%s: expecting a function of %d arguments", ezfunc, nargs); |
7337 | 108 endif |
109 fun = vectorize (fun); | |
110 fstr = formula (fun); | |
8046 | 111 if (isplot) |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
112 xarg = argids{1}; |
8046 | 113 if (nargs == 2) |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
114 yarg = argids{2}; |
8046 | 115 else |
10549 | 116 yarg = ""; |
8046 | 117 endif |
118 elseif (isplot3) | |
7337 | 119 xarg = "x"; |
120 yarg = "y"; | |
8046 | 121 elseif (isplot || ispolar) |
7337 | 122 xarg = ""; |
123 yarg = ""; | |
124 else | |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
125 xarg = argids{1}; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
126 yarg = argids{2}; |
7337 | 127 endif |
128 elseif (isa (fun, "function_handle")) | |
129 fstr = func2str (fun); | |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
130 idx = index (fstr, ')'); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
131 if (idx != 0) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
132 args = regexp (fstr(3:(idx-1)), '\w+', 'match'); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
133 fstr = fstr(idx+2:end); # remove '@(x) ' from string name |
8046 | 134 else |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
135 args = {"x"}; |
8046 | 136 endif |
137 if (isplot && length (args) == 2) | |
138 nargs = 2; | |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
139 elseif (numel (args) != nargs) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
140 error ("%s: expecting a function of %d arguments", ezfunc, nargs); |
7337 | 141 endif |
8046 | 142 if (isplot) |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
143 xarg = args{1}; |
8046 | 144 if (nargs == 2) |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
145 yarg = args{2}; |
8046 | 146 else |
10549 | 147 yarg = ""; |
8046 | 148 endif |
149 elseif (isplot3) | |
7337 | 150 xarg = "x"; |
151 yarg = "y"; | |
152 elseif (ispolar) | |
153 xarg = ""; | |
154 yarg = ""; | |
155 else | |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
156 xarg = args{1}; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
157 yarg = args{2}; |
7337 | 158 endif |
159 else | |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
160 error ("%s: expecting string, inline function, or function handle", ezfunc); |
7337 | 161 endif |
162 | |
8046 | 163 if (nargin > 2 || (nargin == 2 && isplot)) |
7337 | 164 funx = fun; |
165 fstrx = fstr; | |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
166 funy = varargin{2}; |
7337 | 167 if (ischar (funy) && ! strcmp (funy, "circ") && ! strcmp (funy, "animate")) |
168 parametric = true; | |
8046 | 169 if (exist (funy, "file") || exist (funy, "builtin")) |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
170 funy = inline ([funy "(t)"]); |
8046 | 171 else |
10549 | 172 funy = vectorize (inline (funy)); |
8046 | 173 endif |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
174 if (numel (argnames (funy)) != nargs) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
175 error ("%s: expecting a function of %d arguments", ezfunc, nargs); |
7337 | 176 endif |
177 fstry = formula (funy); | |
178 elseif (strcmp (typeinfo (funy), "inline function")) | |
179 parametric = true; | |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
180 if (numel (argnames (funy)) != nargs) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
181 error ("%s: expecting a function of %d arguments", ezfunc, nargs); |
7337 | 182 endif |
183 funy = vectorize (funy); | |
184 fstry = formula (funy); | |
185 elseif (isa (funy, "function_handle")) | |
186 parametric = true; | |
187 fstry = func2str (funy); | |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
188 idx = index (fstry, ')'); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
189 if (idx != 0) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
190 args = regexp (fstry(3:(idx-1)), '\w+', 'match'); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
191 fstry = fstry(idx+2:end); # remove '@(x) ' from string name |
8046 | 192 else |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
193 args = {"y"}; |
8046 | 194 endif |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
195 if (numel (args) != nargs) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
196 error ("%s: expecting a function of %d arguments", ezfunc, nargs); |
7337 | 197 endif |
8046 | 198 endif |
199 | |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
200 if (! parametric && isplot3) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
201 needusage = true; # Can't call non-parametric ezplot3 |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
202 return; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
203 elseif (parametric && isplot) |
8046 | 204 if (nargs == 2) |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
205 error ("%s: can not define a parametric function in this manner", ezfunc); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
206 else |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
207 xarg = "x"; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
208 yarg = "y"; |
8046 | 209 endif |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
210 elseif (parametric) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
211 funz = varargin{3}; |
11149
fe3c3dfc07eb
style fix: break lines before && and ||, not after
John W. Eaton <jwe@octave.org>
parents:
11032
diff
changeset
|
212 if (ischar (funz) && ! strcmp (funz, "circ") |
fe3c3dfc07eb
style fix: break lines before && and ||, not after
John W. Eaton <jwe@octave.org>
parents:
11032
diff
changeset
|
213 && ! strcmp (funz, "animate")) |
10549 | 214 if (exist (funz, "file") || exist (funz, "builtin")) |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
215 funz = inline ([funz "(t)"]); |
10549 | 216 else |
217 funz = vectorize (inline (funz)); | |
218 endif | |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
219 if (numel (argnames (funz)) > nargs) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
220 error ("%s: expecting a function of %d arguments", ezfunc, nargs); |
10549 | 221 endif |
222 fstrz = formula (funz); | |
7337 | 223 elseif (strcmp (typeinfo (funz), "inline function")) |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
224 if (numel (argnames (funz)) != nargs) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
225 error ("%s: expecting a function of %d arguments", ezfunc, nargs); |
10549 | 226 endif |
227 funz = vectorize (funz); | |
228 fstrz = formula (funz); | |
7337 | 229 elseif (isa (funz, "function_handle")) |
10549 | 230 fstrz = func2str (funz); |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
231 idx = index (fstrz, ')'); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
232 if (idx != 0) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
233 args = regexp (fstrz(3:(idx-1)), '\w+', 'match'); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
234 fstrz = fstrz(idx+2:end); # remove '@(x) ' from string name |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
235 else |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
236 args = {"z"}; |
10549 | 237 endif |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
238 if (numel (args) != nargs) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
239 error ("%s: expecting a function of %d arguments", ezfunc, nargs); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
240 endif |
7337 | 241 else |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
242 error ("%s: parametric plots expect 3 functions", ezfunc); |
7337 | 243 endif |
244 endif | |
245 endif | |
246 | |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
247 if ((isplot && nargs != 2) || isplot3 || ispolar) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
248 n = 500; # default for point-style functions like plot |
8046 | 249 else |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
250 n = 60; # default for meshgrid style functions like contour, surf |
8046 | 251 endif |
7337 | 252 domain = []; |
253 circ = false; | |
254 animate = false; | |
255 if (parametric) | |
8046 | 256 if (isplot) |
257 iarg = 3; | |
258 else | |
259 iarg = 4; | |
260 endif | |
7337 | 261 else |
262 iarg = 2; | |
263 endif | |
264 while (iarg <= nargin) | |
265 arg = varargin{iarg++}; | |
266 if (ischar (arg) && strcmp (arg, "circ")) | |
267 circ = true; | |
268 elseif (ischar (arg) && strcmp (arg, "animate")) | |
269 animate = true; | |
270 elseif (isscalar (arg)) | |
271 n = arg; | |
272 elseif (numel (arg) == 2) | |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
273 domain = [arg(1) arg(2) arg(1) arg(2)]; |
7337 | 274 elseif (numel (arg) == 4) |
275 domain = arg(:).'; | |
276 else | |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
277 error ("%s: expecting scalar, 2-, or 4-element vector", ezfunc); |
7337 | 278 endif |
279 endwhile | |
280 | |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
281 if (circ && (iscontour || isplot3 || isplot)) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
282 needusage = true; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
283 return; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
284 elseif (circ && parametric) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
285 error ("%s: can not have both circular domain and parametric function", |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
286 ezfunc); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
287 endif |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
288 |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
289 if (animate && ! isplot3) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
290 error ("%s: animate option only valid for ezplot3", ezfunc); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
291 endif |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
292 |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
293 if (parametric) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
294 ## Make the label strings pretty by removing extra spaces between base |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
295 ## and exponent, the '.' in vectorized code, and the '*' for multiply. |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
296 fstrx = regexprep (regexprep (regexprep (fstrx, |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
297 '\s*\.?(?:\^|\*\*)\s*','^'), '\.([/+-])', '$1'), '\s*\.?\*\s*', ' '); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
298 fstry = regexprep (regexprep (regexprep (fstry, |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
299 '\s*\.?(?:\^|\*\*)\s*','^'), '\.([/+-])', '$1'), '\s*\.?\*\s*', ' '); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
300 if (isplot) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
301 fstr = ["x = " fstrx ", y = " fstry]; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
302 else |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
303 fstrz = regexprep (regexprep (regexprep (fstrz, |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
304 '\s*\.?(?:\^|\*\*)\s*','^'), '\.([/+-])', '$1'), '\s*\.?\*\s*', ' '); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
305 fstr = ["x = " fstrx ",y = " fstry ", z = " fstrz]; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
306 endif |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
307 else |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
308 fstr = regexprep (regexprep (regexprep (fstr, |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
309 '\s*\.?(?:\^|\*\*)\s*','^'), '\.([/+-])', '$1'), '\s*\.?\*\s*', ' '); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
310 if (isplot && nargs == 2) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
311 fstr = [fstr " = 0"]; # make title string of implicit function |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
312 endif |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
313 endif |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
314 |
7337 | 315 if (isempty (domain)) |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
316 auto_domain = true; |
7337 | 317 if (isplot3 || ispolar) |
318 domain = [0, 2*pi, 0, 2*pi]; | |
319 else | |
320 domain = [-2*pi, 2*pi, -2*pi, 2*pi]; | |
321 endif | |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
322 else |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
323 auto_domain = false; |
7337 | 324 endif |
325 | |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
326 auto_domain_done = false; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
327 do |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
328 domain_ok = true; |
8046 | 329 |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
330 if ((isplot && nargs == 1) || isplot3 || ispolar) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
331 X = linspace (domain(1), domain(2), n); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
332 elseif (isplot && numel (domain) == 2) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
333 x = linspace (domain(1), domain(2), n); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
334 [X, Y] = meshgrid (x, x); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
335 elseif (circ) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
336 ## To plot on circular domain develop grid in polar coordinates |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
337 ## and then switch these to Cartesian coordinates. |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
338 cent = [domain(1) + domain(2), domain(3) + domain(4)] / 2; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
339 rmax = sqrt ((domain(2) - cent(1))^2 + (domain(4) - cent(2))^2); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
340 r = linspace (0, rmax, n); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
341 t = linspace (0, 2*pi, n); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
342 [T, R] = meshgrid (t, r); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
343 X = R .* cos (T) + cent(1); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
344 Y = R .* sin (T) + cent(2); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
345 domain = [-rmax+cent(1), +rmax+cent(1), -rmax+cent(2), +rmax+cent(2)]; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
346 else # contour, mesh, surf plots |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
347 x = linspace (domain(1), domain(2), n); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
348 y = linspace (domain(3), domain(4), n); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
349 [X, Y] = meshgrid (x, y); |
7337 | 350 endif |
351 | |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
352 if (parametric) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
353 if (isplot) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
354 XX = feval (funx, X); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
355 Z = feval (funy, X); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
356 X = XX; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
357 elseif (isplot3) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
358 Z = feval (funz, X); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
359 XX = feval (funx, X); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
360 YY = feval (funy, X); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
361 X = XX; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
362 Y = YY; |
8046 | 363 else |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
364 Z = feval (funz, X, Y); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
365 XX = feval (funx, X, Y); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
366 YY = feval (funy, X, Y); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
367 X = XX; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
368 Y = YY; |
8046 | 369 |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
370 ## Eliminate the singularities |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
371 X = __eliminate_sing__ (X); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
372 Y = __eliminate_sing__ (Y); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
373 Z = __eliminate_sing__ (Z); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
374 endif |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
375 else ## non-parametric plots |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
376 if (isplot && nargs == 2) |
10549 | 377 Z = feval (fun, X, Y); |
8046 | 378 |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
379 ## Matlab returns line objects for this case and so can't call |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
380 ## contour directly as it returns patch objects to allow colormaps |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
381 ## to work with contours. Therefore recreate the lines from the |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
382 ## output for contourc, and store in cell arrays. |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
383 [c, ~] = contourc (X, Y, Z, [0, 0]); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
384 |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
385 i = 1; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
386 XX = YY = {}; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
387 while (i < length (c)) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
388 clev = c(1,i); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
389 clen = c(2,i); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
390 XX = [XX, {c(1, i+1:i+clen)}]; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
391 YY = [YY, {c(2, i+1:i+clen)}]; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
392 i += clen+1; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
393 endwhile |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
394 else |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
395 if (ispolar) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
396 Z = feval (fun, X); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
397 ## FIXME: Why aren't singularities eliminated for polar plots? |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
398 elseif (isplot) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
399 Z = feval (fun, X); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
400 ## Eliminate the singularities |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
401 Z = __eliminate_sing__ (Z); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
402 domain = find_valid_domain (X, [], Z); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
403 elseif (iscontour) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
404 Z = feval (fun, X, Y); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
405 Z = __eliminate_sing__ (Z); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
406 else # mesh, surf plots |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
407 Z = feval (fun, X, Y); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
408 Z = __eliminate_sing__ (Z); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
409 if (circ) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
410 ## Use domain calculated at the start. |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
411 ## The X, Y grids are non-monotonic after conversion from polar |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
412 ## coordinates and find_valid_domain fails. |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
413 |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
414 elseif (auto_domain && ! auto_domain_done) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
415 valid_domain = find_valid_domain (X, Y, Z); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
416 domain_ok = isequal (domain, valid_domain); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
417 domain = valid_domain; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
418 auto_domain_done = true; # ensures only 1 round of do loop done |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
419 else |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
420 if (! auto_domain_done) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
421 domain = find_valid_domain (X, Y, Z); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
422 endif |
17314
09543e9c8f40
Use explicit form of end (endif, endfor, etc.) in core m-files.
Rik <rik@octave.org>
parents:
17309
diff
changeset
|
423 endif |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
424 endif |
8046 | 425 endif |
7337 | 426 endif |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
427 until (domain_ok) |
7337 | 428 |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
429 ## Now, actually call the correct plot function with valid data and domain. |
17219
87ba70043bfc
Don't use ifelse in plot fcns to avoid unnecessary fcn evaluations.
Rik <rik@octave.org>
parents:
17175
diff
changeset
|
430 oldfig = []; |
17309
68bcac3c043a
Correct inversion accidentally introduced in cset 87ba70043bfc.
Rik <rik@octave.org>
parents:
17219
diff
changeset
|
431 if (! isempty (hax)) |
17219
87ba70043bfc
Don't use ifelse in plot fcns to avoid unnecessary fcn evaluations.
Rik <rik@octave.org>
parents:
17175
diff
changeset
|
432 oldfig = get (0, "currentfigure"); |
87ba70043bfc
Don't use ifelse in plot fcns to avoid unnecessary fcn evaluations.
Rik <rik@octave.org>
parents:
17175
diff
changeset
|
433 endif |
7337 | 434 unwind_protect |
17054
27b3a675ea6b
__ezplot__.m: Update to use new __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16993
diff
changeset
|
435 hax = newplot (hax); |
7337 | 436 if (iscontour) |
17054
27b3a675ea6b
__ezplot__.m: Update to use new __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16993
diff
changeset
|
437 [~, h] = feval (pltfunc, hax, X, Y, Z); |
8046 | 438 elseif (isplot && nargs == 2) |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
439 h = zeros (length (XX), 1); |
17054
27b3a675ea6b
__ezplot__.m: Update to use new __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16993
diff
changeset
|
440 hold_state = get (hax, "nextplot"); |
8046 | 441 for i = 1 : length (XX) |
17054
27b3a675ea6b
__ezplot__.m: Update to use new __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16993
diff
changeset
|
442 h(i) = plot(hax, XX{i}, YY{i}); |
10549 | 443 if (i == 1) |
17054
27b3a675ea6b
__ezplot__.m: Update to use new __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16993
diff
changeset
|
444 set (hax, "nextplot", "add"); |
10549 | 445 endif |
8046 | 446 endfor |
17054
27b3a675ea6b
__ezplot__.m: Update to use new __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16993
diff
changeset
|
447 set (hax, "nextplot", hold_state); |
27b3a675ea6b
__ezplot__.m: Update to use new __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16993
diff
changeset
|
448 axis (hax, domain); |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
449 elseif (isplot || ispolar) |
17054
27b3a675ea6b
__ezplot__.m: Update to use new __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16993
diff
changeset
|
450 h = feval (pltfunc, hax, X, Z); |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
451 if (isplot && ! parametric) |
17054
27b3a675ea6b
__ezplot__.m: Update to use new __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16993
diff
changeset
|
452 axis (hax, domain); |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
453 endif |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
454 elseif (isplot3) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
455 if (animate) |
17054
27b3a675ea6b
__ezplot__.m: Update to use new __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16993
diff
changeset
|
456 ## draw animation, then replace with true plot3 |
27b3a675ea6b
__ezplot__.m: Update to use new __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16993
diff
changeset
|
457 comet3 (hax, X, Y, Z, .05); |
8046 | 458 endif |
17054
27b3a675ea6b
__ezplot__.m: Update to use new __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16993
diff
changeset
|
459 h = feval (pltfunc, hax, X, Y, Z); |
27b3a675ea6b
__ezplot__.m: Update to use new __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16993
diff
changeset
|
460 set (hax, "box", "off"); |
27b3a675ea6b
__ezplot__.m: Update to use new __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16993
diff
changeset
|
461 grid (hax, "on"); |
27b3a675ea6b
__ezplot__.m: Update to use new __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16993
diff
changeset
|
462 zlabel (hax, "z"); |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
463 else # mesh and surf plots |
17054
27b3a675ea6b
__ezplot__.m: Update to use new __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16993
diff
changeset
|
464 h = feval (pltfunc, hax, X, Y, Z); |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
465 ## FIXME: surf, mesh should really do a better job of setting zlim |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
466 if (! parametric) |
17054
27b3a675ea6b
__ezplot__.m: Update to use new __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16993
diff
changeset
|
467 axis (hax, domain); |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
468 endif |
7337 | 469 endif |
17054
27b3a675ea6b
__ezplot__.m: Update to use new __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16993
diff
changeset
|
470 xlabel (hax, xarg); |
27b3a675ea6b
__ezplot__.m: Update to use new __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16993
diff
changeset
|
471 ylabel (hax, yarg); |
27b3a675ea6b
__ezplot__.m: Update to use new __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16993
diff
changeset
|
472 title (hax, fstr); |
7337 | 473 unwind_protect_cleanup |
17054
27b3a675ea6b
__ezplot__.m: Update to use new __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16993
diff
changeset
|
474 if (! isempty (oldfig)) |
27b3a675ea6b
__ezplot__.m: Update to use new __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16993
diff
changeset
|
475 set (0, "currentfigure", oldfig); |
27b3a675ea6b
__ezplot__.m: Update to use new __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16993
diff
changeset
|
476 endif |
7337 | 477 end_unwind_protect |
478 | |
479 endfunction | |
480 | |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
481 ## Eliminate bad data (complex values, infinities, singularities) |
7337 | 482 function x = __eliminate_sing__ (x) |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
483 if (iscomplex (x)) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
484 x(imag (x) != 0) = NaN; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
485 endif |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
486 x(isinf (x)) = NaN; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
487 ## High rates of curvature are treated as singularities |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
488 threshold = 0.2 * (max (x(:)) - min (x(:))); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
489 x(abs (del2 (x)) > threshold) = NaN; |
7337 | 490 endfunction |
16993
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
491 |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
492 ## Find: 1) range of function where there are not NaN values, |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
493 ## 2) function is changing (not just flat surface) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
494 function domain = find_valid_domain (X, Y, Z); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
495 |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
496 if (isvector (Z)) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
497 ## 2-D data for isplot |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
498 domain = [X(1) X(end)]; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
499 |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
500 ## Guess a range which includes the "mass" of the data by using a |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
501 ## median-based approach. The center 3/4 of the data is used to |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
502 ## determine the range of the data. |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
503 ## This seems to be vaguely what Matlab does, but can't be sure. |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
504 XX = sort (Z(isfinite (Z))); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
505 if (length (X) > 4) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
506 irlo = XX(fix (1/8 * length (XX))); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
507 irhi = XX(fix (7/8 * length (XX))); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
508 d = irhi - irlo; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
509 domain(3) = max (XX(1) - d/8, irlo - d); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
510 domain(4) = min (XX(end) + d/8, irhi + d); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
511 else |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
512 domain(3:4) = [XX(1), XX(end)]; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
513 endif |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
514 |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
515 #{ |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
516 ## FIXME: Old algorithm for removing singularities |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
517 ## Deprecated in 3.8. Can be removed if no problems appear in ezplot. |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
518 idx = 2 : length (Z); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
519 idx = find (((Z(idx) > yrange(2) / 2) & (Z(idx-1) < yrange(1) / 2)) | |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
520 ((Z(idx) < yrange(1) / 2) & (Z(idx-1) > yrange(2) / 2))); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
521 Z(idx) = NaN; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
522 #} |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
523 |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
524 else |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
525 ## 3-D data such as mesh, surf |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
526 Zfinite = ! isnan (Z); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
527 Zrows = any (Zfinite, 2); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
528 rmin = find (Zrows, 1, "first"); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
529 rmax = find (Zrows, 1, "last"); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
530 Zcols = any (Zfinite, 1); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
531 cmin = find (Zcols, 1, "first"); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
532 cmax = find (Zcols, 1, "last"); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
533 |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
534 ## Handle nasty case of all NaNs |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
535 if (isempty (rmin)) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
536 rmin = 1, rmax = rows (Z); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
537 endif |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
538 if (isempty (cmin)) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
539 cmin = 1, cmax = columns (Z); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
540 endif |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
541 |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
542 if ( ! any (isnan (Z([rmin, rmax],:)(:))) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
543 && ! any (isnan (Z(:, [cmin, cmax])(:)))) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
544 ## Exclude surfaces along borders which are flat (gradient =~ 0). |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
545 ## Technically, this calculation might be better done with actual |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
546 ## deltaX, deltaY values. But, data is usually meshgridded |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
547 ## (constant spacing) so working with deltaROW#, deltaCOL# is fine. |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
548 [Zx, Zy] = gradient (Z(rmin:rmax, cmin:cmax)); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
549 Zgrad = sqrt (Zx.^2 + Zy.^2); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
550 slope = ((max (Z(:)) - min (Z(:))) |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
551 / sqrt ((rmax - rmin)^2 + (cmax - cmin)^2)); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
552 slope /= 125; # threshold for discarding points. |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
553 Zrows = any (Zgrad > slope, 2); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
554 rmin += find (Zrows, 1, "first") - 1; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
555 rmax += find (Zrows, 1, "last") - rows (Zrows); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
556 Zcols = any (Zgrad > slope, 1); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
557 cmin += find (Zcols, 1, "first") - 1; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
558 cmax += find (Zcols, 1, "last") - columns (Zcols); |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
559 endif |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
560 |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
561 domain = [X(1,cmin) X(1,cmax) Y(rmin,1) Y(rmax,1)]; |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
562 endif |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
563 |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
564 endfunction |
78f57b14535c
Overhaul ez* family of plot functions.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
565 |