DADiSP Worksheet Functions > Function Categories > Generated Series > MESHGRID
Creates 2D XY values from X and Y input series.
(x, y) = MESHGRID(xser, yser)
xser |
- |
A series, the X range. |
yser |
- |
A series, the Y range. |
Two arrays of X and Y values.
(x, y) = meshgrid(-2..0.2..2, -2..0.2..2);
cos(x*y);setplottype(4);rainbow
generates an interesting 2D cosine plot.
See FXYVALS to generate XY value from scalar parameters.