Problem 1433. Mirror Image matrix across anti-diagonal
Given an input number x, create a mirror image matrix 'Y' across the anti-diagonal. For example, if x=3,
 Y = [1 2 3;
      2 3 2;
      3 2 1]If x=4,
 Y = [1 2 3 4;
      2 3 4 3;
      3 4 3 2;
      4 3 2 1]
			Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers207
Suggested Problems
- 
         Get the area codes from a list of phone numbers 1068 Solvers 
- 
         Given an unsigned integer x, find the largest y by rearranging the bits in x 1928 Solvers 
- 
         given 3 sides, find area of this triangle 811 Solvers 
- 
         
         782 Solvers 
- 
         Find the index of n in magic(n) 263 Solvers 
More from this Author10
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!