Mercurial > hg > octave-lyh
annotate scripts/plot/mesh.m @ 17066:328b579e08e9
mesh.m,meshc.m,meshz.m: Overhaul to use newplot and __plt_get_axis_arg__.
* scripts/plot/mesh.m: Call __plt_get_axis_arg__ and then newplot.
Fix typo in %!demo string.
* scripts/plot/meshc.m: Call __plt_get_axis_arg__ and then newplot.
* scripts/plot/meshz.m: Update to use new __plt_get_axis_arg__.
author | Rik <rik@octave.org> |
---|---|
date | Wed, 24 Jul 2013 23:12:46 -0700 |
parents | c9346014fed2 |
children | eaab03308c0b |
rev | line source |
---|---|
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
14032
diff
changeset
|
1 ## Copyright (C) 1993-2012 John W. Eaton |
2313 | 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 | |
7016 | 7 ## the Free Software Foundation; either version 3 of the License, or (at |
8 ## your option) any later version. | |
2313 | 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 | |
7016 | 16 ## along with Octave; see the file COPYING. If not, see |
17 ## <http://www.gnu.org/licenses/>. | |
245 | 18 |
3368 | 19 ## -*- texinfo -*- |
11101
1f9ab076f5f7
Include the 4 input (color) in the docstrings for mesh() and surf().
Ben Abbott <bpabbott@mac.com>
parents:
7149
diff
changeset
|
20 ## @deftypefn {Function File} {} mesh (@var{x}, @var{y}, @var{z}) |
1f9ab076f5f7
Include the 4 input (color) in the docstrings for mesh() and surf().
Ben Abbott <bpabbott@mac.com>
parents:
7149
diff
changeset
|
21 ## @deftypefnx {Function File} {} mesh (@var{z}) |
1f9ab076f5f7
Include the 4 input (color) in the docstrings for mesh() and surf().
Ben Abbott <bpabbott@mac.com>
parents:
7149
diff
changeset
|
22 ## @deftypefnx {Function File} {} mesh (@dots{}, @var{c}) |
1f9ab076f5f7
Include the 4 input (color) in the docstrings for mesh() and surf().
Ben Abbott <bpabbott@mac.com>
parents:
7149
diff
changeset
|
23 ## @deftypefnx {Function File} {} mesh (@var{hax}, @dots{}) |
11563
3c6e8aaa9555
Grammarcheck m-files before 3.4 release.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
24 ## @deftypefnx {Function File} {@var{h} =} mesh (@dots{}) |
6154 | 25 ## Plot a mesh given matrices @var{x}, and @var{y} from @code{meshgrid} and |
3368 | 26 ## a matrix @var{z} corresponding to the @var{x} and @var{y} coordinates of |
27 ## the mesh. If @var{x} and @var{y} are vectors, then a typical vertex | |
28 ## is (@var{x}(j), @var{y}(i), @var{z}(i,j)). Thus, columns of @var{z} | |
29 ## correspond to different @var{x} values and rows of @var{z} correspond | |
30 ## to different @var{y} values. | |
11101
1f9ab076f5f7
Include the 4 input (color) in the docstrings for mesh() and surf().
Ben Abbott <bpabbott@mac.com>
parents:
7149
diff
changeset
|
31 ## |
11575
d6619410e79c
Spellcheck documentation before 3.4 release.
Rik <octave@nomad.inbox5.com>
parents:
11563
diff
changeset
|
32 ## The color of the mesh is derived from the @code{colormap} |
11563
3c6e8aaa9555
Grammarcheck m-files before 3.4 release.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
33 ## and the value of @var{z}. Optionally the color of the mesh can be |
3c6e8aaa9555
Grammarcheck m-files before 3.4 release.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
34 ## specified independent of @var{z}, by adding a fourth matrix, @var{c}. |
14001
5f0bb45e615c
doc: Update documentation for functions returning a graphics handle h (Bug #34761)
Rik <octave@nomad.inbox5.com>
parents:
11575
diff
changeset
|
35 ## |
5f0bb45e615c
doc: Update documentation for functions returning a graphics handle h (Bug #34761)
Rik <octave@nomad.inbox5.com>
parents:
11575
diff
changeset
|
36 ## The optional return value @var{h} is a graphics handle to the created |
14032
8497d89a17f1
mesh.m: Correct typo in documentation
Rik <octave@nomad.inbox5.com>
parents:
14001
diff
changeset
|
37 ## surface object. |
11101
1f9ab076f5f7
Include the 4 input (color) in the docstrings for mesh() and surf().
Ben Abbott <bpabbott@mac.com>
parents:
7149
diff
changeset
|
38 ## @seealso{colormap, contour, meshgrid, surf} |
3368 | 39 ## @end deftypefn |
4 | 40 |
2314 | 41 ## Author: jwe |
42 | |
7109 | 43 function h = mesh (varargin) |
6172 | 44 |
16985
c9346014fed2
Validate inputs are real for mesh, meshc, meshz functions.
Rik <rik@octave.org>
parents:
16828
diff
changeset
|
45 if (! all (cellfun ("isreal", varargin))) |
c9346014fed2
Validate inputs are real for mesh, meshc, meshz functions.
Rik <rik@octave.org>
parents:
16828
diff
changeset
|
46 error ("mesh: X, Y, Z, C arguments must be real"); |
c9346014fed2
Validate inputs are real for mesh, meshc, meshz functions.
Rik <rik@octave.org>
parents:
16828
diff
changeset
|
47 endif |
c9346014fed2
Validate inputs are real for mesh, meshc, meshz functions.
Rik <rik@octave.org>
parents:
16828
diff
changeset
|
48 |
17066
328b579e08e9
mesh.m,meshc.m,meshz.m: Overhaul to use newplot and __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16985
diff
changeset
|
49 [hax, varargin, nargin] = __plt_get_axis_arg__ ("mesh", varargin{:}); |
6390 | 50 |
17066
328b579e08e9
mesh.m,meshc.m,meshz.m: Overhaul to use newplot and __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16985
diff
changeset
|
51 oldfig = ifelse (isempty (hax), [], get (0, "currentfigure")); |
328b579e08e9
mesh.m,meshc.m,meshz.m: Overhaul to use newplot and __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16985
diff
changeset
|
52 unwind_protect |
328b579e08e9
mesh.m,meshc.m,meshz.m: Overhaul to use newplot and __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16985
diff
changeset
|
53 hax = newplot (hax); |
328b579e08e9
mesh.m,meshc.m,meshz.m: Overhaul to use newplot and __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16985
diff
changeset
|
54 htmp = surface (hax, varargin{:}); |
7110 | 55 |
17066
328b579e08e9
mesh.m,meshc.m,meshz.m: Overhaul to use newplot and __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16985
diff
changeset
|
56 set (htmp, "facecolor", "w"); |
328b579e08e9
mesh.m,meshc.m,meshz.m: Overhaul to use newplot and __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16985
diff
changeset
|
57 set (htmp, "edgecolor", "flat"); |
7110 | 58 |
17066
328b579e08e9
mesh.m,meshc.m,meshz.m: Overhaul to use newplot and __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16985
diff
changeset
|
59 if (! ishold ()) |
328b579e08e9
mesh.m,meshc.m,meshz.m: Overhaul to use newplot and __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16985
diff
changeset
|
60 set (hax, "view", [-37.5, 30], |
328b579e08e9
mesh.m,meshc.m,meshz.m: Overhaul to use newplot and __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16985
diff
changeset
|
61 "xgrid", "on", "ygrid", "on", "zgrid", "on"); |
328b579e08e9
mesh.m,meshc.m,meshz.m: Overhaul to use newplot and __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16985
diff
changeset
|
62 endif |
328b579e08e9
mesh.m,meshc.m,meshz.m: Overhaul to use newplot and __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16985
diff
changeset
|
63 unwind_protect_cleanup |
328b579e08e9
mesh.m,meshc.m,meshz.m: Overhaul to use newplot and __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16985
diff
changeset
|
64 if (! isempty (oldfig)) |
328b579e08e9
mesh.m,meshc.m,meshz.m: Overhaul to use newplot and __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16985
diff
changeset
|
65 set (0, "currentfigure", oldfig); |
328b579e08e9
mesh.m,meshc.m,meshz.m: Overhaul to use newplot and __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16985
diff
changeset
|
66 endif |
328b579e08e9
mesh.m,meshc.m,meshz.m: Overhaul to use newplot and __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16985
diff
changeset
|
67 end_unwind_protect |
7110 | 68 |
6257 | 69 if (nargout > 0) |
16985
c9346014fed2
Validate inputs are real for mesh, meshc, meshz functions.
Rik <rik@octave.org>
parents:
16828
diff
changeset
|
70 h = htmp; |
6154 | 71 endif |
72 | |
4 | 73 endfunction |
14001
5f0bb45e615c
doc: Update documentation for functions returning a graphics handle h (Bug #34761)
Rik <octave@nomad.inbox5.com>
parents:
11575
diff
changeset
|
74 |
5f0bb45e615c
doc: Update documentation for functions returning a graphics handle h (Bug #34761)
Rik <octave@nomad.inbox5.com>
parents:
11575
diff
changeset
|
75 |
14411 | 76 %!demo |
16828
ddac88d32d6a
Make demos in plot m-files compatible with Matlab for running comparison script.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
77 %! clf; |
14868
5d3a684236b0
maint: Use Octave coding conventions for cuddling parentheses in scripts directory
Rik <octave@nomad.inbox5.com>
parents:
14412
diff
changeset
|
78 %! x = logspace (0,1,11); |
14411 | 79 %! z = x'*x; |
80 %! mesh (x, x, z, z.^2); | |
16985
c9346014fed2
Validate inputs are real for mesh, meshc, meshz functions.
Rik <rik@octave.org>
parents:
16828
diff
changeset
|
81 %! xlabel 'X-axis'; |
c9346014fed2
Validate inputs are real for mesh, meshc, meshz functions.
Rik <rik@octave.org>
parents:
16828
diff
changeset
|
82 %! ylabel 'Y-axis'; |
16828
ddac88d32d6a
Make demos in plot m-files compatible with Matlab for running comparison script.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
83 %! zlabel 'linear scale'; |
14001
5f0bb45e615c
doc: Update documentation for functions returning a graphics handle h (Bug #34761)
Rik <octave@nomad.inbox5.com>
parents:
11575
diff
changeset
|
84 |
14411 | 85 %!demo |
16828
ddac88d32d6a
Make demos in plot m-files compatible with Matlab for running comparison script.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
86 %! clf; |
14868
5d3a684236b0
maint: Use Octave coding conventions for cuddling parentheses in scripts directory
Rik <octave@nomad.inbox5.com>
parents:
14412
diff
changeset
|
87 %! x = logspace (0,1,11); |
14411 | 88 %! z = x'*x; |
89 %! mesh (x, x, z, z.^2); | |
16828
ddac88d32d6a
Make demos in plot m-files compatible with Matlab for running comparison script.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
90 %! set (gca, 'zscale', 'log'); |
16985
c9346014fed2
Validate inputs are real for mesh, meshc, meshz functions.
Rik <rik@octave.org>
parents:
16828
diff
changeset
|
91 %! xlabel 'X-axis'; |
c9346014fed2
Validate inputs are real for mesh, meshc, meshz functions.
Rik <rik@octave.org>
parents:
16828
diff
changeset
|
92 %! ylabel 'Y-axis'; |
16828
ddac88d32d6a
Make demos in plot m-files compatible with Matlab for running comparison script.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
93 %! zlabel 'log scale'; |
ddac88d32d6a
Make demos in plot m-files compatible with Matlab for running comparison script.
Rik <rik@octave.org>
parents:
14868
diff
changeset
|
94 %! if (strcmp (get (gcf, '__graphics_toolkit__'), 'gnuplot')) |
17066
328b579e08e9
mesh.m,meshc.m,meshz.m: Overhaul to use newplot and __plt_get_axis_arg__.
Rik <rik@octave.org>
parents:
16985
diff
changeset
|
95 %! title ({'Gnuplot: mesh color is wrong', 'This is a Gnuplot bug'}); |
14411 | 96 %! endif |
97 |