Problem 411. Back to basics 21 - Matrix replicating
Covering some basic topics I haven't seen elsewhere on Cody.
Given an input matrix, generate an output matrix that consists of the input matrix replicated in a 2 by 2 pattern Examples:
[1] -> [1 1
        1 1]
[1 2       -> [1 2 1 2
 3 4]          3 4 3 4 
               1 2 1 2 
               3 4 3 4]
			Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers1751
Suggested Problems
- 
         Return the 3n+1 sequence for n 8403 Solvers 
- 
         
         2517 Solvers 
- 
         Return the first and last characters of a character array 11209 Solvers 
- 
         Split a string into chunks of specified length 1962 Solvers 
- 
         
         395 Solvers 
More from this Author39
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!