Mercurial > hg > octave-nkf
comparison scripts/plot/meshgrid.m @ 2325:b5568c31ee2c
[project @ 1996-07-15 22:20:21 by jwe]
author | jwe |
---|---|
date | Mon, 15 Jul 1996 22:20:21 +0000 |
parents | 949ab8eba8bc |
children | a52bd8a035a2 |
comparison
equal
deleted
inserted
replaced
2324:fdc6e2f81333 | 2325:b5568c31ee2c |
---|---|
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 ## | 27 ## |
28 ## See also: plot, semilogx, semilogy, loglog, polar, mesh, meshdom, contour, | 28 ## See also: plot, semilogx, semilogy, loglog, polar, mesh, meshdom, contour, |
29 ## bar, stairs, gplot, gsplot, replot, xlabel, ylabel, title | 29 ## bar, stairs, gplot, gsplot, replot, xlabel, ylabel, 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 |