2847
|
1 ## Copyright (C) 1996, 1997 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 |
|
7 ## the Free Software Foundation; either version 2, or (at your option) |
|
8 ## 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, write to the Free |
|
17 ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA |
|
18 ## 02111-1307, USA. |
1713
|
19 |
3407
|
20 ## -*- texinfo -*- |
|
21 ## @deftypefn {Function File} {[@var{xx}, @var{yy}] =} meshgrid (@var{x}, @var{y}) |
3439
|
22 ## @deftypefnx {Function File} {[@var{xx}, @var{yy}] =} meshgrid (@var{x}) |
3407
|
23 ## Given vectors of @var{x} and @var{y} coordinates, return two matrices corresponding |
|
24 ## to the @var{x} and @var{y} coordinates of a mesh. The rows of @var{xx} are copies of @var{x}, |
|
25 ## and the columns of @var{yy} are copies of @var{y}. |
|
26 ## @end deftypefn |
|
27 ## @seealso{sombrero, plot, semilogx, semilogy, loglog, polar, mesh, meshdom, contour, |
3408
|
28 ## bar, stairs, gplot, gsplot, replot, xlabel, ylabel, and title} |
1713
|
29 |
2314
|
30 ## Author: jwe |
|
31 |
2311
|
32 function [xx, yy] = meshgrid (x, y) |
1713
|
33 |
|
34 if (nargin == 1) |
|
35 y = x; |
|
36 endif |
|
37 if (nargin > 0 && nargin < 3) |
|
38 if (is_vector (x) && is_vector (y)) |
3803
|
39 xx = ones (length (y), 1) * x(:).'; |
|
40 yy = y(:) * ones (1, length (x)); |
1713
|
41 else |
|
42 error ("meshgrid: arguments must be vectors"); |
|
43 endif |
|
44 else |
|
45 usage ("[xx, yy] = meshgrid (x, y)"); |
|
46 endif |
|
47 |
|
48 endfunction |