Create n x 2n "mirror" matrix of this type:
Examples
For n = 2
m = [ 1 2 2 1
1 2 2 1 ]For n = 3
m = [ 1 2 3 3 2 1
1 2 3 3 2 1
1 2 3 3 2 1 ]
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers689
Suggested Problems
-
3038 Solvers
-
1439 Solvers
-
Implement simple rotation cypher
1096 Solvers
-
We love vectorized solutions. Problem 1 : remove the row average.
884 Solvers
-
Generate a vector like 1,2,2,3,3,3,4,4,4,4
13630 Solvers
More from this Author9
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
This problem was fun. I was able to find a better way to solve beat my own solution. Not the best way though. But lot better.