Write a program that flip the elements of main diagonal , upper and lower diagonal values of a sqare matrix.
For example if a 3 x 3 matrix is an input of this function
A = [1 2 3; 3 2 1; 1 2 3]
then result would be
A = [3 1 3; 2 2 2; 1 3 1]
Hint: Use diag() and flip() functions
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers225
Suggested Problems
-
Make the vector [1 2 3 4 5 6 7 8 9 10]
53632 Solvers
-
Given an unsigned integer x, find the largest y by rearranging the bits in x
2070 Solvers
-
Determine the number of odd integers in a vector
857 Solvers
-
How long do each of the stages of the rocket take to burn?
562 Solvers
-
1662 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Christian, how right you are !! :-))