Problem 54094. Check if a matrix Diagonal is equal to its secondary diagonal
Your function should return True if the secondary diagonal is equal to diagonal, and False otherwise.
Eg: M = [1 2 1
3 4 4
7 5 7]
The output is True
M=[1 2
1 2]
The output is False. Always check the diagonal top to bottom. Return True if the matrix is empty.
Solution Stats
Solution Comments
Show commentsProblem Recent Solvers37
Suggested Problems
-
3428 Solvers
-
How to find the position of an element in a vector without using the find function
2810 Solvers
-
Output any real number that is neither positive nor negative
408 Solvers
-
520 Solvers
-
Find the max element of the array
2112 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!