| Contents | Index |
Replicate and tile categorical array
B = repmat(A,m,n)
B = repmat(A,[m n p ...])
B = repmat(A,m,n) creates a large array B consisting of an m-by-n tiling of copies of the categorical array A. The size of B is [size(A,1)*M size(A,2)*N, size(A,3), ...]. repmat(A,n) creates an n-by-n tiling.
B = repmat(A,[m n p ...]) tiles the categorical array A to produce a multidimensional array B composed of copies of A. The size of B is [size(A,1)*M, size(A,2)*N, size(A,3)*P, ...].
| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |