]> Creatis software - CreaPhase.git/blob - octave_packages/m/plot/mesh.m
update packages
[CreaPhase.git] / octave_packages / m / plot / mesh.m
1 ## Copyright (C) 1993-2012 John W. Eaton
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
19 ## -*- texinfo -*-
20 ## @deftypefn  {Function File} {} mesh (@var{x}, @var{y}, @var{z})
21 ## @deftypefnx {Function File} {} mesh (@var{z})
22 ## @deftypefnx {Function File} {} mesh (@dots{}, @var{c})
23 ## @deftypefnx {Function File} {} mesh (@var{hax}, @dots{})
24 ## @deftypefnx {Function File} {@var{h} =} mesh (@dots{})
25 ## Plot a mesh given matrices @var{x}, and @var{y} from @code{meshgrid} and
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.
31 ##
32 ## The color of the mesh is derived from the @code{colormap}
33 ## and the value of @var{z}.  Optionally the color of the mesh can be
34 ## specified independent of @var{z}, by adding a fourth matrix, @var{c}.
35 ##
36 ## The optional return value @var{h} is a graphics handle to the created
37 ## surface object.
38 ## @seealso{colormap, contour, meshgrid, surf}
39 ## @end deftypefn
40
41 ## Author: jwe
42
43 function h = mesh (varargin)
44
45   newplot ();
46
47   tmp = surface (varargin{:});
48
49   ax = get (tmp, "parent");
50
51   set (tmp, "facecolor", "w");
52   set (tmp, "edgecolor", "flat");
53
54   if (! ishold ())
55     set (ax, "view", [-37.5, 30],
56          "xgrid", "on", "ygrid", "on", "zgrid", "on");
57   endif
58
59   if (nargout > 0)
60     h = tmp;
61   endif
62
63 endfunction
64
65
66 %% FIXME: Need demo or test for function
67