Mercurial > hg > octave-nkf
comparison scripts/plot/meshgrid.m @ 2710:a52bd8a035a2
[project @ 1997-02-21 19:39:52 by jwe]
author | jwe |
---|---|
date | Fri, 21 Feb 1997 19:40:01 +0000 |
parents | b5568c31ee2c |
children | 8b262e771614 |
comparison
equal
deleted
inserted
replaced
2709:0f72b0462b51 | 2710:a52bd8a035a2 |
---|---|
22 ## Given vectors of x and y coordinates, return two matrices corresponding | 22 ## Given vectors of x and y coordinates, return two matrices corresponding |
23 ## to the x and y coordinates of a mesh. The rows of xx are copies of x, | 23 ## to the x and y coordinates of a mesh. The rows of xx are copies of x, |
24 ## and the columns of yy are copies of y. | 24 ## and the columns of yy are copies of y. |
25 ## | 25 ## |
26 ## [xx, yy] = meshgrid (x) is an abbreviation for [xx, yy] = meshgrid (x, x). | 26 ## [xx, yy] = meshgrid (x) is an abbreviation for [xx, yy] = meshgrid (x, x). |
27 ## | |
28 ## See sombrero.m for an example of using meshgrid. | |
27 ## | 29 ## |
28 ## See also: plot, semilogx, semilogy, loglog, polar, mesh, meshdom, contour, | 30 ## See also: plot, semilogx, semilogy, loglog, polar, mesh, meshdom, contour, |
29 ## bar, stairs, gplot, gsplot, replot, xlabel, ylabel, title | 31 ## bar, stairs, gplot, gsplot, replot, xlabel, ylabel, title |
30 | 32 |
31 ## Author: jwe | 33 ## Author: jwe |