Owning Class: geometry
Requires: MathScript RT Module
[X, Y] = meshgrid2d(x)
[X, Y] = meshgrid2d(x, y)
Legacy Name: meshgrid
Generates arrays that you can use to evaluate functions of two variables. [X, Y] = meshgrid2d(x) is equivalent to [X, Y] = meshgrid2d(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] = meshgrid2d([1, 2, 3], [4, 5, 6, 7]);
[X, Y] = meshgrid2d([1, 2, 3])
[X, Y] = meshgrid2d([1, 2, 3]);