Mercurial > hg > octave-lyh
comparison scripts/plot/meshgrid.m @ 5053:c08cb1098afc
[project @ 2004-10-19 23:10:54 by jwe]
author | jwe |
---|---|
date | Tue, 19 Oct 2004 23:10:55 +0000 |
parents | 22bd65326ec1 |
children | eecc24b92d97 |
comparison
equal
deleted
inserted
replaced
5052:c6ef19da4b24 | 5053:c08cb1098afc |
---|---|
22 ## @deftypefnx {Function File} {[@var{xx}, @var{yy}] =} meshgrid (@var{x}) | 22 ## @deftypefnx {Function File} {[@var{xx}, @var{yy}] =} meshgrid (@var{x}) |
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 ## @seealso{sombrero, plot, semilogx, semilogy, loglog, polar, mesh, meshdom, contour, | 28 ## @seealso{sombrero, plot, semilogx, semilogy, loglog, polar, mesh, meshdom, contour, |
28 ## bar, stairs, gplot, gsplot, replot, xlabel, ylabel, and title} | 29 ## bar, stairs, gplot, gsplot, replot, xlabel, ylabel, and title} |
29 | 30 |
30 ## Author: jwe | 31 ## Author: jwe |
31 | 32 |