repmat
Replicate and tile an array.
📝 Syntaxe
R = repmat(A, m)
R = repmat(A, m, n)
R = repmat(A, m, n, p …)
R = repmat(A, [m n])
R = repmat(A, [m n p …])
📥 Argument d'entrée
A - an array.
m, n, p … - a value: integer
📤 Argument de sortie
R - result array form by tiling.
📄 Description
repmat repeats matrix or N-D array.
💡 Exemples
repmat(1:5, 2)repmat(1:5, [2 3])repmat(1:5, [2 3 4])🔗 Voir aussi
🕔 Historique
Version
📄 Description
1.0.0
version initiale
Last updated
Was this helpful?