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 …])
📥Arguments d'entrée
Paramètre Description
A an array.
m, n, p … a value: integer
📤Arguments de sortie
Paramètre Description
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
reshape
🕔Historique des versions
Version Description
1.0.0 version initiale
Modifier cette page sur GitHub