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 …])
| Paramètre | Description |
|---|---|
| A | an array. |
| m, n, p … | a value: integer |
| Paramètre | Description |
|---|---|
| R | result array form by tiling. |
repmat repeats matrix or N-D array.
repmat(1:5, 2)
repmat(1:5, [2 3])
repmat(1:5, [2 3 4])
| Version | Description |
|---|---|
| 1.0.0 | version initiale |