Problem 43654. Replicate and Tile an Array

Replicate and tile an array.

Example

 A = [1 2 3; 4 5 6; 7 8 9]
 B = Epli_and_Tile(A,1,2)
 B = [ 1     2     3     1     2     3;
       4     5     6     4     5     6;
       7     8     9     7     8     9] 

Solution Stats

75.61% Correct | 24.39% Incorrect
Last Solution submitted on Feb 20, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers61

Suggested Problems

More from this Author1

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!