Given a matrix, return the sum of all the elements across the diagonals.
E.g. A = [1 2 3; 4 5 6; 7 8 9;]
then, sum = 25 as sum of (1, 3, 7, 9,5)
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers231
Suggested Problems
-
Sort a list of complex numbers based on far they are from the origin.
5797 Solvers
-
Return unique values without sorting
999 Solvers
-
Number of 1s in a binary string
10993 Solvers
-
We love vectorized solutions. Problem 1 : remove the row average.
884 Solvers
-
convert matrix to single column
435 Solvers
More from this Author25
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Basically the same as Problem 1158
good!!