meshgrid
Cartesian rectangular grid in 2-D or 3-D.
📝 Syntaxe
[X, Y] = meshgrid(x, y)
[X, Y] = meshgrid(x)
[X, Y, Z] = meshgrid(x, y, z)
[X, Y, Z] = meshgrid(x)
📥 Argument d'entrée
x - x-coordinates of points: vector
y - y-coordinates of points: vector
z - z-coordinates of points: vector
📤 Argument de sortie
X - x-coordinates over grid: 2-D or 3-D array.
Y - y-coordinates over grid: 2-D or 3-D array.
Z - z-coordinates over grid: 3-D array.
📄 Description
meshgrid creates Cartesian rectangular grid in 2-D or 3-D.
💡 Exemple
🕔 Historique
Version
📄 Description
1.0.0
version initiale
Last updated
Was this helpful?