Problem 859. Get the elements of diagonal and antidiagonal for any m-by-n matrix
In the problem Problem 858. Permute diagonal and antidiagonal created by Jean-Marie SAINTHILLIER the test suite is only based on squared m-by-m matrix .
In this problem you must submit a solution which returns the diagonal and anti-diagonal elements without using the DIAG function for any m-by-n matrix
Example:
If the input is a matrix 4*3
x = [ 0 0 0 1 48 17 0 2 99 14 0 3]
we expect 2 output vectors:
dg_elements = [0 48 99] % diagonal elements
antidg_elements = [14 2 17 ] % anti-diagonal elements
Note : You do not have to permute anything. Just return the elements.
Solution Stats
Problem Comments
-
2 Comments
I really don't see the point of that kind of problems where you can't use Matlab built-in functions.
which functions?
Solution Comments
Show commentsProblem Recent Solvers492
Suggested Problems
-
4642 Solvers
-
Find state names that end with the letter A
1188 Solvers
-
It dseon't mettar waht oedrr the lrettes in a wrod are.
1998 Solvers
-
Is my wife right? Now with even more wrong husband
1334 Solvers
-
Compress strings (not springs)
209 Solvers
More from this Author30
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!