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 Solvers691
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15782 Solvers
-
1713 Solvers
-
Given a matrix, swap the 2nd & 3rd columns
1263 Solvers
-
Find the sides of an isosceles triangle when given its area and height from its base to apex
2144 Solvers
-
1065 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.