comparison scripts/plot/meshgrid.m @ 5642:2618a0750ae6

[project @ 2006-03-06 21:26:48 by jwe]
author jwe
date Mon, 06 Mar 2006 21:26:54 +0000
parents e81543fdbe01
children 34cda7d94c08
comparison
equal deleted inserted replaced
5641:eb998631a4aa 5642:2618a0750ae6
26 ## @var{z} coordinates of a mesh. Given only @var{x} and @var{y}, 26 ## @var{z} coordinates of a mesh. Given only @var{x} and @var{y},
27 ## return matrices corresponding to the @var{x} and @var{y} coordinates 27 ## return matrices corresponding to the @var{x} and @var{y} coordinates
28 ## of a mesh. The rows of @var{xx} are copies of @var{x}, and the 28 ## of a mesh. The rows of @var{xx} are copies of @var{x}, and the
29 ## columns of @var{yy} are copies of @var{y}. If @var{y} is omitted, 29 ## columns of @var{yy} are copies of @var{y}. If @var{y} is omitted,
30 ## then it is assumed to be the same as @var{x}. 30 ## then it is assumed to be the same as @var{x}.
31 ## @seealso{mesh, contour}
31 ## @end deftypefn 32 ## @end deftypefn
32 ##
33 ## @seealso{mesh, contour}
34 33
35 ## Author: jwe 34 ## Author: jwe
36 35
37 function [xx, yy, zz] = meshgrid (x, y, z) 36 function [xx, yy, zz] = meshgrid (x, y, z)
38 37