Given a n x n matrix, M, flip its main diagonal.
Example:
>> M=magic(5);
>> flipDiagonal(M)
9 24 1 8 15
23 21 7 14 16
4 6 13 20 22
10 12 19 5 3
11 18 25 2 17
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers904
Suggested Problems
-
Project Euler: Problem 4, Palindromic numbers
1266 Solvers
-
Sum of diagonal of a square matrix
1637 Solvers
-
Multiples of a Number in a Given Range
939 Solvers
-
Replace multiples of 5 with NaN
468 Solvers
-
1142 Solvers
More from this Author16
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Additional test cases have been added.