comparison scripts/plot/meshgrid.m @ 5214:eecc24b92d97

[project @ 2005-03-16 17:14:12 by jwe]
author jwe
date Wed, 16 Mar 2005 17:14:12 +0000
parents c08cb1098afc
children 4c8a2e4e0717
comparison
equal deleted inserted replaced
5213:390f13fc0f4a 5214:eecc24b92d97
23 ## Given vectors of @var{x} and @var{y} coordinates, return two matrices corresponding 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}, 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}. 25 ## and the columns of @var{yy} are copies of @var{y}.
26 ## @end deftypefn 26 ## @end deftypefn
27 ## 27 ##
28 ## @seealso{sombrero, plot, semilogx, semilogy, loglog, polar, mesh, meshdom, contour, 28 ## @seealso{sombrero, plot, semilogx, semilogy, loglog, polar, mesh,
29 ## bar, stairs, gplot, gsplot, replot, xlabel, ylabel, and title} 29 ## meshdom, contour, bar, stairs, replot, xlabel, ylabel, and title}
30 30
31 ## Author: jwe 31 ## Author: jwe
32 32
33 function [xx, yy] = meshgrid (x, y) 33 function [xx, yy] = meshgrid (x, y)
34 34