Problem 2094. Sum of diagonals elements of a matrix
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
 
		Jon
    	on 31 May 2014
	
	
  	Basically the same as Problem 1158
		Jong-Min Kwak
    	on 4 Dec 2016
	
	
  	good!!
Solution Comments
Show commentsProblem Recent Solvers226
Suggested Problems
- 
         
Project Euler: Problem 2, Sum of even Fibonacci
2612 Solvers
 - 
         
Back to basics 21 - Matrix replicating
1755 Solvers
 - 
         
Getting the row and column location from a matrix
293 Solvers
 - 
         
We love vectorized solutions. Problem 1 : remove the row average.
863 Solvers
 - 
         
         
9693 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!