Mercurial > hg > octave-lyh
annotate scripts/plot/mesh.m @ 11540:b0ef6f28e09a
deprecate krylovb function
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Sat, 15 Jan 2011 03:40:32 -0500 |
parents | fd0a3ac60b0e |
children | 3c6e8aaa9555 |
rev | line source |
---|---|
11523 | 1 ## Copyright (C) 1993-2011 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{}) |
1f9ab076f5f7
Include the 4 input (color) in the docstrings for mesh() and surf().
Ben Abbott <bpabbott@mac.com>
parents:
7149
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 ## |
1f9ab076f5f7
Include the 4 input (color) in the docstrings for mesh() and surf().
Ben Abbott <bpabbott@mac.com>
parents:
7149
diff
changeset
|
32 ## The color of the mesh is derirved from the @code{colormap} |
1f9ab076f5f7
Include the 4 input (color) in the docstrings for mesh() and surf().
Ben Abbott <bpabbott@mac.com>
parents:
7149
diff
changeset
|
33 ## and the value of @var{z}. Optionally the color of the mesh can be |
1f9ab076f5f7
Include the 4 input (color) in the docstrings for mesh() and surf().
Ben Abbott <bpabbott@mac.com>
parents:
7149
diff
changeset
|
34 ## specified independent of of @var{z}, by adding a fourth matrix, @var{c}. |
1f9ab076f5f7
Include the 4 input (color) in the docstrings for mesh() and surf().
Ben Abbott <bpabbott@mac.com>
parents:
7149
diff
changeset
|
35 ## @seealso{colormap, contour, meshgrid, surf} |
3368 | 36 ## @end deftypefn |
4 | 37 |
2314 | 38 ## Author: jwe |
39 | |
7109 | 40 function h = mesh (varargin) |
6172 | 41 |
6390 | 42 newplot (); |
43 | |
7109 | 44 tmp = surface (varargin{:}); |
7110 | 45 |
46 ax = get (tmp, "parent"); | |
47 | |
7149 | 48 set (tmp, "facecolor", "w"); |
7110 | 49 set (tmp, "edgecolor", "flat"); |
50 | |
7146 | 51 if (! ishold ()) |
11427
dc983f92e774
contour3.m: Grid on be default for 3D plots.
Ben Abbott <bpabbott@mac.com>
parents:
11101
diff
changeset
|
52 set (ax, "view", [-37.5, 30], |
dc983f92e774
contour3.m: Grid on be default for 3D plots.
Ben Abbott <bpabbott@mac.com>
parents:
11101
diff
changeset
|
53 "xgrid", "on", "ygrid", "on", "zgrid", "on"); |
7146 | 54 endif |
7110 | 55 |
6257 | 56 if (nargout > 0) |
57 h = tmp; | |
6154 | 58 endif |
59 | |
4 | 60 endfunction |