Member of the geometry class.
[X, Y] = meshgrid(x)
[X, Y] = meshgrid(x, y)
Generates arrays that you can use to evaluate functions of two variables. [X, Y] = meshgrid(x) is equivalent to [X, Y] = meshgrid(x, x).
| Name | Description |
| x | Specifies points along the first dimension. x is a vector of real or complex numbers. |
| y | Specifies points along the second dimension. y is a vector of real or complex numbers. |
| Name | Description |
| X | Returns an m-by-l matrix, where l is the length of x and m is the length of y. The rows of X are copies of x. |
| Y | Returns an m-by-l matrix. The columns of Y are copies of y. |
[X, Y] = meshgrid([1, 2, 3], [4, 5, 6, 7]);
[X, Y] = meshgrid([1, 2, 3])
[X, Y] = meshgrid([1, 2, 3]);