ndgrid
Rectangular grid in N-D space
📝 Syntaxe
[X1, X2, ..., Xn] = ndgrid(x1, x2, ... , xn)
[X1, X2, ..., Xn] = ndgrid(xg)
📥 Argument d'entrée
x1, x2, … , xn - vector: grid vectors as separate arguments.
xg - vector: grid vector for all dimensions.
📤 Argument de sortie
X1, X2, … , Xn - array: full grid representation.
📄 Description
[X1, X2, … , Xn] = ndgrid(x1, x2, … , xn) generates an n-dimensional full grid by replicating each grid vector.
[X1, X2, … , Xn] = ndgrid(xg) In this scenario, the single grid vectorxg is used for all dimensions. The number of output arguments determines the dimensionality n of the resulting grid.
💡 Exemples
🔗 Voir aussi
🕔 Historique
Version
📄 Description
1.6.0
version initiale
Last updated
Was this helpful?