comparison scripts/plot/meshgrid.m @ 3408:ae7adbb591e8

[project @ 2000-01-06 08:29:11 by jwe]
author jwe
date Thu, 06 Jan 2000 08:29:26 +0000
parents 5e0a0b1cba43
children 3234a698073a
comparison
equal deleted inserted replaced
3407:5e0a0b1cba43 3408:ae7adbb591e8
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 ## @seealso{sombrero, plot, semilogx, semilogy, loglog, polar, mesh, meshdom, contour, 27 ## @seealso{sombrero, plot, semilogx, semilogy, loglog, polar, mesh, meshdom, contour,
28 ## bar, stairs, gplot, gsplot, replot, xlabel, ylabel, title} 28 ## bar, stairs, gplot, gsplot, replot, xlabel, ylabel, and title}
29 29
30 ## Author: jwe 30 ## Author: jwe
31 31
32 function [xx, yy] = meshgrid (x, y) 32 function [xx, yy] = meshgrid (x, y)
33 33