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)) |
|
39 xlen = length (x); |
|
40 ylen = length (y); |
|
41 xx = zeros (ylen, xlen); |
|
42 yy = zeros (ylen, xlen); |
|
43 if (columns (x) == 1) |
|
44 x = x'; |
|
45 endif |
|
46 if (rows (y) == 1) |
|
47 y = y'; |
|
48 endif |
|
49 for i = 1:ylen |
|
50 xx(i,:) = x; |
|
51 endfor |
|
52 for i = 1:xlen |
|
53 yy(:,i) = y; |
|
54 endfor |
|
55 else |
|
56 error ("meshgrid: arguments must be vectors"); |
|
57 endif |
|
58 else |
|
59 usage ("[xx, yy] = meshgrid (x, y)"); |
|
60 endif |
|
61 |
|
62 endfunction |