Replicate and Tile an Array - MATLAB Cody - MATLAB Central

Problem 43654. Replicate and Tile an Array

Difficulty:Rate

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.9% Correct | 24.1% Incorrect
Last Solution submitted on Nov 29, 2024

Problem Comments

Solution Comments

Show comments
PIVlab surpasses 100K all-time File Exchange downloads
During the past twelve months, PIVlab, a MATLAB Community Toolbox for particle...
2
4
LLMs with MATLAB updated to support the latest OpenAI Models
Large Languge model with MATLAB, a free add-on that lets you access...
2
4

Problem Recent Solvers62

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!
Go to top of page